v10
latestOpenAPI 3.1.02026-08-0375143791.1 KBBatch
Get batch results
Page through a finished batch's results as JSON instead of downloading the NDJSON files.
get/batch/{batch_id}/results
Path parameters
batch_idstring required
ID of the batch to retrieve or cancel.
Example:batch_9f2c8a
ID of the batch to retrieve or cancel.
Query parameters
limitinteger
Records per page. Defaults to 25. A page can close early so its payload stays under ~8 MB; rely on next_cursor rather than counting records.
Records per page. Defaults to 25. A page can close early so its payload stays under ~8 MB; rely on next_cursor rather than counting records.
cursorstring
next_cursor from the previous page.
next_cursor from the previous page.
Response
One page of result records. Keep paging with next_cursor while has_more is true.
Example response
{
"data": [
{
"url": "https://example.com/products/anvil",
"itemId": "sku-1",
"http_status": 200
}
]
}