GET
/
workflows
/
{workflow_id}
curl -X GET \
  -H 'Authorization: Bearer $API_KEY' \
  -H 'Accept: application/json' \
  '$BASE_URL/workflows/$workflow_id'
{
  "workflow": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Example Workflow",
    "team_id": "41480ee5-14ff-4f9e-89bf-91b0a8e50e77",
    "canvas_type": 0,
    "created_at": "2025-01-02T10:00:00Z"
  }
}

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).

Path Parameters

workflow_id
string
required

The UUID of the workflow you want to retrieve.

Response

200
application/json
Workflow retrieved successfully.
workflow
object

A JSON object representing the found workflow.