Overview
Retrieve all managed runners available to your account. Managed runners are ComfyUI instances hosted and maintained by ComfyControl.
Access to managed runners requires a Pro or Plus tier subscription. Free tier users will receive a 403 Forbidden error.
Query Parameters
Page number to retrieve (default: 1, minimum: 1).
Number of runners per page (default: 10, minimum: 1, maximum: 100).
Response
Array of managed runner objects.
Total number of managed runners available to your tier across all pages.
Managed Runner Object
Unique identifier (UUID) for the managed runner.
Type of managed runner. Values: plus, pro
Current status of the runner. Values: active, disabled
Array of tags associated with the runner for workflow matching.
ISO 8601 timestamp when the runner was created.
ISO 8601 timestamp when the runner was last updated.
Example Response
{
"runners": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Managed Pro Runner 1",
"runner_type": "pro",
"status": "active",
"tags": ["managed", "gpu-a100", "high-performance"],
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"name": "Managed Plus Runner 1",
"runner_type": "plus",
"status": "active",
"tags": ["managed", "gpu-rtx4090", "standard"],
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
],
"total": 2
}
Error Responses
Unauthorized - invalid or missing authentication token.
Forbidden - your account tier does not have access to managed runners. Upgrade to Pro or Plus tier.
Notes
- Only active managed runners are returned in the list
- Managed runners are maintained by ComfyControl with high availability
- Runner type corresponds to your subscription tier (Pro or Plus)
- Results are ordered by creation date (newest first)
- The
total field indicates the total count of available managed runners for your tier