Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://api.open.cx/crawl/{jobId}/status \
--header 'Authorization: Bearer <token>'
{
"success": true,
"status": "cancelled"
}
Check the status of a crawl job by its ID. Returns the current status and progress information.
curl --request GET \
--url https://api.open.cx/crawl/{jobId}/status \
--header 'Authorization: Bearer <token>'
{
"success": true,
"status": "cancelled"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Was this page helpful?