Get Crawl Job Details
Crawl Endpoints
Get Crawl Job Details
Retrieve the full configuration and statistics for a specific crawl job, including instructions, token usage, and credit cost.
GET
Get Crawl Job Details
This endpoint returns the complete record for a crawl job: the original instructions you submitted, the job status, token consumption, and credit cost. It does not return the extracted page data. To get the actual content from each page, use GET /crawl//pages.Documentation Index
Fetch the complete documentation index at: https://docs.spidra.io/llms.txt
Use this file to discover all available pages before exploring further.
When to Use This Endpoint
Use this endpoint when you need to:- Inspect the
crawl_instructionortransform_instructionthat was used for a job - Check token and credit costs for accounting or reporting
- Confirm job configuration before re-running an extraction with POST /crawl//extract
Example Request
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique job identifier |
base_url | string | The starting URL that was crawled |
crawl_instruction | string | The instruction used to decide which pages to follow |
transform_instruction | string | The AI prompt used to extract data from each page |
max_pages | integer | Maximum pages requested |
pages_crawled | integer | Pages that were successfully processed |
status | string | Current status: waiting, active, completed, or failed |
created_at | string | ISO 8601 timestamp when the job was created |
updated_at | string | ISO 8601 timestamp of the last status update |
input_tokens | number | Total input tokens consumed by the AI across all pages |
output_tokens | number | Total output tokens generated by the AI across all pages |
credits_used | number | Total credits charged for this job |
Example Response
This endpoint returns job configuration and stats only. For the actual extracted content from each page, call GET /crawl//pages.

