curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/workers/{runner_name} \
--header 'Authorization: Bearer <token>'{
"task_queue": "<string>",
"organization_id": "<string>",
"runner_name": "<string>",
"workers": [
{
"identity": "<string>",
"last_access_time": "<string>",
"rate_per_second": 123
}
],
"worker_count": 123,
"approximate_backlog_count": 123
}Get worker information for a specific runner.
Args: runner_name: The runner name (e.g., “default”, “production-runner”)
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/workers/{runner_name} \
--header 'Authorization: Bearer <token>'{
"task_queue": "<string>",
"organization_id": "<string>",
"runner_name": "<string>",
"workers": [
{
"identity": "<string>",
"last_access_time": "<string>",
"rate_per_second": 123
}
],
"worker_count": 123,
"approximate_backlog_count": 123
}Enter your Kubiya API token (format: Bearer
Was this page helpful?