Skip to main content
GET
/
api
/
workflows
/
{workflow_uuid}
Get Workflow
curl --request GET \
  --url https://api.example.com/api/workflows/{workflow_uuid}
{
  "workflow_uuid": "<string>",
  "name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "specification": "<unknown>",
  "current_version": 123,
  "total_executions": 0,
  "success_rate": 123,
  "avg_duration": "<string>",
  "executions": []
}

Headers

kinetic-api-key
string | null

Path Parameters

workflow_uuid
string
required

Response

Successful Response

Detailed workflow response with stats and recent executions. Used by GET /api/workflows/{id} endpoint.

workflow_uuid
string
required
name
string
required
created_at
string<date-time> | null
updated_at
string<date-time> | null
description
string | null
specification
unknown
current_version
integer | null
total_executions
integer
default:0
success_rate
number | null
avg_duration
string | null
executions
ExecutionResponse · object[]