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,
"hasNextPage": true,
"hasPrevPage": true
}Retrieve a paginated list of crawl jobs for your organization. You can filter by status and control pagination with page and limit parameters.
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,
"hasNextPage": true,
"hasPrevPage": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
x >= 11 <= x <= 100cancelled, completed, failed, scraping Was this page helpful?