curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/worker-queues/{queue_id}/executions \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}List recent executions for a specific worker queue.
Used by workers in single-execution mode to monitor when their task completes.
Args: queue_id: Worker queue ID limit: Maximum number of executions to return (default: 10) status: Filter by status (‘all’, ‘running’, ‘completed’, ‘failed’, etc.)
Returns: List of executions for this queue
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/worker-queues/{queue_id}/executions \
--header 'Authorization: Bearer <token>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?