Download the extracted results of a bulk job
Request
| Authentication | |
|---|---|
token | Cache and insert token into example requests (15d expiry) |
| Query parameters | |
|---|---|
name | Name of the bulk job whose data you wish to download. |
format | Request |
type | Request |
num | Pass an integer value (e.g. |
Example request
curl --request GET \
--url 'https://api.diffbot.com/v3/bulk/data?name=%3Cname%3E&token=<DIFFBOT_TOKEN>' \
--header 'Accept: application/json'
Response
| 200The bulk job's extracted data | |
|---|---|
col | Name of the Crawl or Bulk job this record was extracted from |
parentUrl | Immediate parent contained a link to this record |
pageUrl | The URL of this record |
id | A reference |
type | A standard entity type assigned either on job creation or classified by Analyze API. All other keys on this job record follow the ontology set by its type. |
token | Your token |
timestamp | Time when record was crawled, in ISO 8601 format. |
[
{
"col": "docs-bulkdata-sample",
"parentUrl": "https://example.com",
"pageUrl": "https://example.com/",
"id": 6526070754824580571,
"type": "other",
"title": "Example Domain",
"content": "Example Domain \n\n# Example Domain \n\nThis domain is for use in documentation examples without needing permission. Avoid use in operations. \n\n[Learn more](https://iana.org/domains/example)",
"token": "<REDACTED>",
"timestamp": "2026-07-24T23:03:01Z"
}
]
| 400No job found by that name | |
|---|---|
errorCode | |
error |
{
"errorCode": 400,
"error": "No collection record"
}