Batch

Get batch results

Page through the result records of a finished batch as JSON, in the same order as the downloadable result files. Use this instead of downloading and parsing the NDJSON files yourself.

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

has_moreboolean

Whether another page is available.

next_cursorstring nullable

Cursor for the next page.

Example response

{
  "data": [
    {
      "url": "https://example.com/products/anvil",
      "itemId": "sku-1",
      "http_status": 200
    }
  ]
}

Changes