openAiBatch

List batch jobs with query filters

Dashboard-authenticated POST-for-filtering route for batch jobs. The backend delegates POST to GET, so filters are query parameters (status, provider_id) and request bodies are ignored.

post/api/v1/batches/list/

Query parameters

pageinteger

Page number.

page_sizeinteger

Number of results per page. Maximum 100.

statusstring

Filter dashboard batch jobs by normalized batch status.

provider_idstring

Filter dashboard batch jobs by provider ID.

Headers

Authorizationstring required

Use a dashboard JWT only for dashboard-authenticated endpoints. Respan API-key endpoints use the respanApiKey auth field instead.

Response

Paginated filtered list of batch jobs.

countinteger required

Total number of matching batch jobs.

nextstring nullable

URL for the next page, if any.

previousstring nullable

URL for the previous page, if any.

Changes