List Inline Batches
List authenticated inline batches with filters and bidirectional cursor pagination
results field is always null, including for completed batches. Retrieve GET /api/beta/batches/{batch_id} to obtain completed inline results.
See the Batch API guide for pagination examples, filter rules, and error behavior.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 inline batch metadata ordered newest first.
"list"Inline batch metadata ordered newest first.
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.