Skip to main content
GET
/
api
/
v1
/
tasks
/
plan
/
{execution_id}
Get Plan Execution
curl --request GET \
  --url https://control-plane.kubiya.ai/api/v1/tasks/plan/{execution_id} \
  --header 'Authorization: Bearer <token>'
{
  "execution_id": "<string>",
  "status": "<string>",
  "plan_title": "<string>",
  "total_tasks": 123,
  "completed_tasks": 123,
  "failed_tasks": 123,
  "progress_percentage": 123,
  "plan_generation_id": "<string>",
  "started_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "waiting_tasks": [
    "<unknown>"
  ],
  "plan_json": {}
}

Authorizations

Authorization
string
header
required

Enter your Kubiya API token (format: Bearer )

Path Parameters

execution_id
string
required

Response

Successful Response

Response for plan status

execution_id
string
required
status
string
required
plan_title
string
required
total_tasks
integer
required
completed_tasks
integer
required
failed_tasks
integer
required
progress_percentage
number
required
plan_generation_id
string | null
started_at
string<date-time> | null
completed_at
string<date-time> | null
waiting_tasks
any[] | null
plan_json
Plan Json · object