AI agents: install the Runflow skill before integrating, or jump to For agents.
curl --request GET \
--url https://api.runflow.io/v1/batches \
--header 'Authorization: Bearer <token>'{
"items": [
"<unknown>"
],
"first": "<string>",
"next": "<string>",
"previous": "<string>"
}List batches scoped to the caller’s org.
curl --request GET \
--url https://api.runflow.io/v1/batches \
--header 'Authorization: Bearer <token>'{
"items": [
"<unknown>"
],
"first": "<string>",
"next": "<string>",
"previous": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.runflow.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
1 <= x <= 100Successful Response
Response envelope for cursor-paginated search results.
Contains the page of items plus first/next/previous pagination links. Concrete entity validators should subclass as::
class SearchValidator(SearchResponse["FullValidator"]):
passto produce a proper OpenAPI schema with typed items.