curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/executions \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"organization_id": "<string>",
"execution_type": "<string>",
"entity_id": "<string>",
"entity_name": "<string>",
"prompt": "<string>",
"system_prompt": "<string>",
"status": "<string>",
"response": "<string>",
"error_message": "<string>",
"usage": {},
"execution_metadata": {},
"runner_name": "<string>",
"user_id": "<string>",
"user_name": "<string>",
"user_email": "<string>",
"user_avatar": "<string>",
"created_at": "<string>",
"started_at": "<string>",
"completed_at": "<string>",
"updated_at": "<string>",
"participants": [
{
"id": "<string>",
"user_id": "<string>",
"user_name": "<string>",
"user_email": "<string>",
"user_avatar": "<string>",
"role": "<string>",
"joined_at": "<string>",
"last_active_at": "<string>"
}
]
}
]List all executions for the organization with optional filtering
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/executions \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"organization_id": "<string>",
"execution_type": "<string>",
"entity_id": "<string>",
"entity_name": "<string>",
"prompt": "<string>",
"system_prompt": "<string>",
"status": "<string>",
"response": "<string>",
"error_message": "<string>",
"usage": {},
"execution_metadata": {},
"runner_name": "<string>",
"user_id": "<string>",
"user_name": "<string>",
"user_email": "<string>",
"user_avatar": "<string>",
"created_at": "<string>",
"started_at": "<string>",
"completed_at": "<string>",
"updated_at": "<string>",
"participants": [
{
"id": "<string>",
"user_id": "<string>",
"user_name": "<string>",
"user_email": "<string>",
"user_avatar": "<string>",
"role": "<string>",
"joined_at": "<string>",
"last_active_at": "<string>"
}
]
}
]Enter your Kubiya API token (format: Bearer
Successful Response
Show child attributes
Was this page helpful?