Skip to main content
GET
/
v1
/
batches
List batches (org-scoped)
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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Organization-Id
string | null

Query Parameters

q
string | null
sort_by
string | null
limit
integer
default:25
Required range: 1 <= x <= 100

Response

Successful 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"]):
pass

to produce a proper OpenAPI schema with typed items.

items
any[]
required
first
string | null
next
string | null
previous
string | null