> ## Documentation Index
> Fetch the complete documentation index at: https://comfyuiwiki.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Comfy Router API overview

> How the Comfy Router API works: one route per model ID, with guides for discovery, schemas, queued requests, errors, and billing.

Choose a model, inspect its schema, and call `POST /v2/models/{provider}/{model}`. The route and authentication stay the same across models. Each model accepts its own native request body and returns its own native result.

## Guides

<CardGroup cols={2}>
  <Card title="Discover models" icon="magnifying-glass" href="/development/comfy-router/discover-models">
    List the catalog, page through it, and read one model's entry.
  </Card>

  <Card title="Schemas and results" icon="brackets-curly" href="/development/comfy-router/schemas">
    Fetch a model's input and output schema and read its result.
  </Card>

  <Card title="Queued requests" icon="list-check" href="/development/comfy-router/queue">
    Submit a run now, then poll, collect, or cancel it later.
  </Card>

  <Card title="Errors and retries" icon="rotate" href="/development/comfy-router/errors">
    Read error responses and retry without a second charge.
  </Card>

  <Card title="Billing" icon="receipt" href="/development/comfy-router/billing">
    What is charged, policy-refusal billing, and reconciling usage.
  </Card>
</CardGroup>

## Per-model examples

* [Google Gemini](/development/comfy-router/models/google/gemini/code)
* [Nano Banana 2](/development/comfy-router/models/google/nano-banana-2/code)
* [Nano Banana 2 Lite](/development/comfy-router/models/google/nano-banana-2-lite/code)
* [Nano Banana Pro](/development/comfy-router/models/google/nano-banana-pro/code)
* [FLUX 1.1 Pro Ultra](/development/comfy-router/models/black-forest-labs/flux-1-1-pro-ultra-image/code)
* [FLUX Kontext](/development/comfy-router/models/black-forest-labs/flux-1-kontext/code)
* [FLUX Video Upscale](/development/comfy-router/models/black-forest-labs/flux-video-upscale/code)
* [FLUX 3 Video](/development/comfy-router/models/black-forest-labs/flux-3-video/code)
* [Ideogram 4](/development/comfy-router/models/ideogram/ideogram-v4/code)

## Next

* [Quickstart](/development/comfy-router/quickstart): installation, invocation, and saving the image.
* [Models](/development/comfy-router/models): browse the catalog and inspect model-specific request examples.
* [Headers](/development/comfy-router/headers): authentication, idempotency, request IDs, and retry pacing.
* [API reference](/development/comfy-router/reference): endpoint parameters, schemas, and response codes.
