Download Crawl Results as ZIP
Crawl Endpoints
Download Crawl Results
Download the results of a completed crawl job as a ZIP archive containing HTML, markdown, and extracted data files.
GET
Download Crawl Results as ZIP
Downloads a ZIP archive of all successfully crawled pages from a completed job. Each page is saved as one or more files inside the archive, organized by hostname and path. Use the
If you omit the
When multiple content types are requested, each page gets its own folder:
include parameter to control which content types are bundled in the ZIP.
Content Types
| Value | What is included |
|---|---|
html | Raw HTML file for each page |
markdown | Markdown version of each page |
data | AI-extracted data in JSON, CSV, or Markdown format (format is auto-detected from your transformInstruction) |
include parameter, all three types are included by default.
Example Requests
ZIP Archive Structure
When a single content type is requested, files are placed at the root of the archive with appropriate extensions:Response
The response is a binary ZIP file with the following headers:| Header | Value |
|---|---|
Content-Type | application/zip |
Content-Disposition | attachment; filename=crawl-{jobId}.zip |
Only pages with
status: "success" are included in the download. If no successful pages exist, the API returns a 404 error.Authorizations
Path Parameters
The ID of the completed crawl job to download
Query Parameters
Comma-separated list of content types to include in the ZIP. Accepted values: html, markdown, data. Defaults to all three. Example: include=data,markdown
Response
ZIP archive containing the crawl results
The response is of type file.

