Batch
Get a batch
Check progress and get download links when the batch finishes. Also returns the rejected-URL list and webhook signing secret from submission, so nothing is lost if the submit response was dropped.
get/batch/{batch_id}
Path parameters
batch_idstring required
ID of the batch to retrieve or cancel.
Example:batch_9f2c8a
ID of the batch to retrieve or cancel.
Response
Batch details
Example response
{
"id": "batch_9f2c8a",
"tags": [
"docs"
],
"input": {
"submitted": 25000,
"accepted": 24817,
"duplicates": 183
},
"progress": {
"succeeded": 18091,
"failed": 311,
"pending": 6415
},
"credits": {
"estimated": 24817,
"charged": 18091
},
"errors": [
{
"code": "WEBSITE_ACCESS_ERROR",
"count": 204
}
],
"invalid_urls": [
{
"reason": "Must be a public http:// or https:// URL"
}
]
}