수집 상태

URL
api.hashscraper.com/api/get_collection_status
요청방식
POST
Port
80
Status
ACTIVE

Header

Key Required Value
Content-Type 필수 application/json; version=2

Parameter

Key Required Description
api_key 필수 해시스크래퍼 API 키 (API키는 오른쪽 위 프로필을 누르신후 내 정보에 가시면 얻을수 있습니다.)
schedule_result_id 필수 Schedule Result Id

샘플코드

  • cURL
  • Ruby
  • Python
  • NodeJS
  • PHP
  • Java
curl -X POST \
  --header "Content-Type: application/json; version=2" \
  --data '{
    "api_key": "YOUR_API_KEY",
    "schedule_result_id": "YOUR_SCHEDULE_RESULT_ID"
  }' \
  'api.hashscraper.com/api/get_collection_status'

              

API 응답 샘플

{
  "result": "success",
  "version": "v2",
  "collection_status": {
    "id": 13229289,
    "sr_status": "running",
    "data_count": 5,
    "created_at": "2023-10-20T10:32:19.000+09:00",
    "updated_at": "2023-10-20T10:32:52.000+09:00",
    "param_info": {
      "param1(검색키워드)": "개발자",
      "param2(최대수집개수)": "10"
    },
    "no_result": false,
    "union": false,
    "latest_schedule_result_id": 13229289
  }
}