Skip to main content
GET
/
workflow
List Workflows
curl --request GET \
  --url https://api.getoutbox.ai/workflow/ \
  --header 'Authorization: Bearer <token>'
{
  "folders": [
    {}
  ],
  "workflows": [
    {}
  ],
  "pagination": {}
}

Authorizations

Authorization
string
header
required

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

Query Parameters

folder_id
string

Folder UUID, or null for root.

include_workflows
boolean
default:true
page
integer
default:1
page_size
integer
default:20
quick
boolean
default:false

Partial match on name (and description for the full list).

Response

200 - application/json

Folder + workflow list. With quick=true, returns { workflows: [{id, name}] }.

folders
object[]
required

Folder tree (root only) or direct children of folder_id.

workflows
object[]
pagination
object

{ page, page_size, total, total_pages }.