재수집

URL
api.hashscraper.com/api/retry_collect
요청방식
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/retry_collect'

              

API 응답 샘플

{
  "result": "success",
  "version": "v2",
  "retry_info": {
    "schedule_result_id": "13229289",
    "schedule_id": "사람인 채용공고 수집_1697441449957",
    "param_info": {
      "param1(검색키워드)": "개발자",
      "param2(최대수집개수)": "10"
    }
  }
}