Documentation Index
Fetch the complete documentation index at: https://docs.comfycontrol.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Retrieve detailed information about a specific runner by its ID. Only returns runners that belong to your account.
Path Parameters
The unique identifier (UUID) of the runner to retrieve.
Response
Unique identifier (UUID) for the runner.
UUID of the user who owns this runner.
Current status of the runner. Values: active, disabled
The URL where the runner is accessible.
Array of tags associated with the runner.
Custom headers configured for this runner.
ISO 8601 timestamp when the runner was created.
ISO 8601 timestamp when the runner was last updated.
Example Response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"name": "Production GPU Runner",
"status": "active",
"endpoint": "https://my-comfy.example.com",
"tags": ["production", "gpu-a100", "image-generation"],
"headers": {
"Authorization": "Bearer secret_token",
"X-Custom-Header": "value"
},
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
Error Responses
Unauthorized - invalid or missing authentication token.
Not Found - runner with the specified ID does not exist or does not belong to your account.