Skip to main content
GET
/
v2
/
workflows
curl -X GET 'https://api.anyformat.ai/v2/workflows/?page=1&page_size=20' \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "count": 2,
  "page": 1,
  "page_size": 20,
  "results": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Invoice Processing",
      "description": "Extract data from invoice documents",
      "created_at": "2024-03-24T12:00:00.000Z",
      "updated_at": "2024-03-24T12:00:00.000Z"
    },
    {
      "id": "550e8400-e29b-41d4-a716-446655440001",
      "name": "Receipt Processing",
      "description": null,
      "created_at": "2024-03-24T13:00:00.000Z",
      "updated_at": "2024-03-24T13:00:00.000Z"
    }
  ]
}
The maximum page_size is 100. Requests exceeding this value are silently capped at 100.
curl -X GET 'https://api.anyformat.ai/v2/workflows/?page=1&page_size=20' \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "count": 2,
  "page": 1,
  "page_size": 20,
  "results": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Invoice Processing",
      "description": "Extract data from invoice documents",
      "created_at": "2024-03-24T12:00:00.000Z",
      "updated_at": "2024-03-24T12:00:00.000Z"
    },
    {
      "id": "550e8400-e29b-41d4-a716-446655440001",
      "name": "Receipt Processing",
      "description": null,
      "created_at": "2024-03-24T13:00:00.000Z",
      "updated_at": "2024-03-24T13:00:00.000Z"
    }
  ]
}

Headers

authorization
string | null

Query Parameters

page_size
integer
default:20
Required range: 1 <= x <= 100
page
integer
default:1
Required range: x >= 1
status
string | null
sort_by
string | null
order
string | null

Response

Successful Response

GET /workflows/ — paginated workflow list.

results
WorkflowResponse · object[]
required
count
integer
required
page
integer
required
page_size
integer
required