v13

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-015232292.9 KB
Workflows

Get Workflow

Retrieve details for a single workflow, including its input fields and deployment status.

get/api/v1/workflows/{id}

Path parameters

idstring required
Example:3b1f7c92-8d4e-4a6b-9c0d-5e2f8a714b36

The unique workflow identifier.

Response

Workflow details including input field definitions.

Example response

{
  "data": {
    "id": "3b1f7c92-8d4e-4a6b-9c0d-5e2f8a714b36",
    "name": "Customer Support Agent",
    "description": "Routes incoming support tickets and drafts responses",
    "folderId": "8a4c2e6b-0d1f-4b3a-9c5e-7f2d8b4a6c91",
    "workspaceId": "a91c4b2e-6d3f-4e8a-b5c7-0d9e2f1a8c64",
    "isDeployed": true,
    "deployedAt": "2025-06-15T10:30:00Z",
    "runCount": 142,
    "lastRunAt": "2025-06-20T14:15:22Z",
    "variables": {},
    "inputs": {
      "fields": {}
    },
    "createdAt": "2025-01-10T09:00:00Z",
    "updatedAt": "2025-06-18T16:45:00Z"
  },
  "limits": {
    "workflowExecutionRateLimit": {
      "sync": {
        "requestsPerMinute": 60,
        "maxBurst": 10,
        "remaining": 59,
        "resetAt": "2025-06-20T14:16:00Z"
      },
      "async": {
        "requestsPerMinute": 60,
        "maxBurst": 10,
        "remaining": 59,
        "resetAt": "2025-06-20T14:16:00Z"
      }
    },
    "usage": {
      "currentPeriodCost": 1.25,
      "limit": 50,
      "plan": "pro"
    }
  }
}