> ## 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.

# Get Managed Runner

> Retrieve details of a specific managed runner

## Overview

Retrieve detailed information about a specific managed runner by its ID. Managed runners are ComfyUI instances hosted and maintained by ComfyControl.

<Info>
  Access to managed runners requires a **Pro** or **Plus** tier subscription.
</Info>

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier (UUID) of the managed runner to retrieve.
</ParamField>

## Response

<ResponseField name="id" type="string" required>
  Unique identifier (UUID) for the managed runner.
</ResponseField>

<ResponseField name="name" type="string" required>
  The runner's name.
</ResponseField>

<ResponseField name="runner_type" type="string" required>
  Type of managed runner. Values: `plus`, `pro`
</ResponseField>

<ResponseField name="status" type="string" required>
  Current status of the runner. Values: `active`, `disabled`
</ResponseField>

<ResponseField name="tags" type="string[]" required>
  Array of tags associated with the runner for workflow matching.
</ResponseField>

<ResponseField name="created_at" type="string" required>
  ISO 8601 timestamp when the runner was created.
</ResponseField>

<ResponseField name="updated_at" type="string" required>
  ISO 8601 timestamp when the runner was last updated.
</ResponseField>

## Example Response

```json theme={null}
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "Managed Pro Runner 1",
  "runner_type": "pro",
  "status": "active",
  "tags": ["managed", "gpu-a100", "high-performance", "image-generation"],
  "created_at": "2024-01-10T08:00:00Z",
  "updated_at": "2024-01-15T10:30:00Z"
}
```

## Error Responses

<ResponseField name="401" type="error">
  Unauthorized - invalid or missing authentication token.
</ResponseField>

<ResponseField name="403" type="error">
  Forbidden - your account tier does not have access to managed runners. Upgrade to Pro or Plus tier.
</ResponseField>

<ResponseField name="404" type="error">
  Not Found - managed runner with the specified ID does not exist or is not available to your tier.
</ResponseField>

## Notes

* Only active managed runners are accessible
* Managed runners are maintained by ComfyControl with guaranteed uptime
