GET
/
workflows
curl -X GET \
  -H 'Authorization: Bearer $API_KEY' \
  -H 'Accept: application/json' \
  '$BASE_URL/workflows'
[
  {
    "id": "14ac2bd4-833c-4baa-bb03-7395463197bd",
    "name": "My Example Workflow"
  },
  {
    "id": "c613ad9f-99e2-4de2-8fda-737612fb5c13",
    "name": "Another Workflow"
  }
]

Headers

x-api-key
string
required

Your API key. This is required by most endpoints to access the API programmatically. You can view your x-api-key using the 'Profile' tab on the website.

Authorization
string
required

Bearer token for authentication (JWT).

Response

200
application/json
Successful response. Returns a JSON array of workflows.
id
string

The workflow’s unique ID (UUID).

name
string

Workflow name.