List Crawl History
Crawl Endpoints
List Crawl History
Retrieve a paginated list of your past crawl jobs, including status, page counts, and credit usage.
GET
List Crawl History
Use this endpoint to browse all the crawl jobs your account has submitted. Each record shows the base URL, how many pages were crawled, the current job status, and how many credits were consumed. This is useful for building dashboards, auditing your usage, or picking up a job ID you want to work with in a follow-up request.
Pagination
The response is paginated. Use thepage and limit query parameters to navigate through your history.
Response Fields
| Field | Type | Description |
|---|---|---|
jobs | array | List of crawl job records for this page |
jobs[].id | string | Unique job ID. Use this to call other endpoints like GET /crawl//pages |
jobs[].base_url | string | The starting URL that was crawled |
jobs[].status | string | Job status: waiting, active, completed, or failed |
jobs[].max_pages | integer | The maximum number of pages requested |
jobs[].pages_crawled | integer | Actual number of pages successfully crawled |
jobs[].created_at | string | ISO 8601 timestamp when the job was created |
jobs[].credits_used | number | Credits charged to your account for this job |
total | integer | Total number of crawl jobs in your account |
page | integer | The current page number |
totalPages | integer | Total number of pages available |

