GET
/
crawl
Get paginated crawl jobs
curl --request GET \
  --url https://api.open.cx/crawl \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "org_id": "<string>",
      "url": "<string>",
      "status": "cancelled",
      "created_at": "<string>",
      "updated_at": "<string>",
      "completed_at": "<string>",
      "completed_pages": 123,
      "error_message": "<string>",
      "total_pages": 123
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123,
  "totalPages": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
number
limit
number
status
enum<string>
Available options:
cancelled,
completed,
failed,
scraping

Response

200
application/json

Crawl jobs retrieved successfully.

The response is of type object.