List All Batches
List all authenticated batches with filters and bidirectional cursor pagination
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Number of batches to return.
1 <= x <= 100Return the next page of batches older than this batch ID. Use the current page's last_id. Cannot be combined with before.
Return the adjacent page of batches newer than this batch ID, still ordered newest first. Use the current page's first_id. Cannot be combined with after.
Filter by one or more statuses. Repeat the parameter or provide comma-separated values.
validating, in_progress, finalizing, completed, failed, expired, cancelling, cancelled Return batches created strictly after this boundary. Accepts Unix seconds or a timezone-qualified ISO 8601/RFC 3339 timestamp with at most millisecond precision.
Return batches created strictly before this boundary. Accepts Unix seconds or a timezone-qualified ISO 8601/RFC 3339 timestamp with at most millisecond precision.
Response
A page of all visible batches ordered newest first.
"list"All visible batches ordered newest first, including inline and file-backed jobs.
First batch ID in this page, or null for an empty page. Pass as before to return to the adjacent newer page.
Last batch ID in this page, or null for an empty page. Pass as after to fetch the next older page.
Whether more records exist in the direction being paged.