Get Crawled Pages
Crawl Endpoints
Get Crawled Pages
Retrieve all pages from a completed crawl job, including extracted data and signed URLs to the raw HTML and markdown files.
GET
Get Crawled Pages
Returns every page processed by a crawl job. Call this once the job status is
The
What
completed.
Each page record includes the extracted content in data, plus signed URLs to the original HTML snapshot and markdown version stored by Spidra.
Example Request
Response Fields
| Field | Type | Description |
|---|---|---|
pages | array | All pages processed by this job, including failed ones. |
pages[].id | string | Unique page ID. Pass this to POST /crawl//extract to re-run extraction on a specific page. |
pages[].url | string | The URL of this page. |
pages[].title | string | Page title as detected during crawling. |
pages[].status | string | success or failed. |
pages[].data | any | Extracted content for this page. When a transformInstruction or schema was provided, this contains AI-extracted structured data. When neither was set, this is the raw page markdown — no AI was used. |
pages[].error_message | string or null | Error details when status is failed. |
pages[].html | string or null | Signed URL to the raw HTML snapshot. Valid for 1 hour. |
pages[].markdown | string or null | Signed URL to the markdown version of this page. Valid for 1 hour. |
pages[].created_at | string | ISO 8601 timestamp when this page was processed. |
Example Response
The data Field
What data contains depends on how you configured the job:
- With
transformInstruction—datais whatever the AI extracted based on your prompt. It could be a string, an object, or structured JSON depending on what you asked for. - With
schema—datais a JSON object matching the schema you defined, with all fields present. - With neither —
datais the raw page markdown. No AI was involved and no token credits were charged. ThehtmlandmarkdownURLs point to the same content in its original format.
Handling Failed Pages
Pages withstatus: "failed" still appear in the response. The error_message explains what went wrong. To re-run extraction on a failed page without re-crawling the site, use the extract endpoint.

