Skip to main content
GET
/
api
/
v1
/
jobs
/
{job_id}
/
executions
Get Job Executions
curl --request GET \
  --url https://control-plane.kubiya.ai/api/v1/jobs/{job_id}/executions
{
  "job_id": "<string>",
  "total_count": 123,
  "executions": [
    {
      "execution_id": "<string>",
      "trigger_type": "<string>",
      "status": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "duration_ms": 123,
      "error_message": "<string>"
    }
  ]
}

Path Parameters

job_id
string
required

Query Parameters

limit
integer
default:50
offset
integer
default:0

Response

Successful Response

Schema for job execution history response

job_id
string
required
total_count
integer
required
executions
JobExecutionHistoryItem · object[]
required