# ComfyUI: English Developers

## Developers

### Develop with Comfy

- [Overview](https://docs.comfy.org/development/overview.md): Using ComfyUI as a Developer
- [Getting an API Key](https://docs.comfy.org/development/api-development/getting-an-api-key.md): Learn how to create and manage your Comfy Platform API Key for accessing Cloud APIs, Partner Nodes, and more.
- [Examples](https://docs.comfy.org/development/examples.md): Start with a model through Comfy Router or deploy and run your own ComfyUI workflow.

### Deploy ComfyUI

- [Deploying ComfyUI](https://docs.comfy.org/development/deploy/overview.md): Scale ComfyUI to millions of generations
- [Comfy API deployments](https://docs.comfy.org/development/serverless/overview.md): Build a versioned ComfyUI environment, deploy it as a managed endpoint, and run workflows through the API.
- [Comfy Cloud](https://docs.comfy.org/development/deploy/cloud.md): Use Comfy Cloud as an always-available managed deployment for running workflows via API

#### Self-Hosting Options

- [Self-Hosting Options](https://docs.comfy.org/development/deploy/self-hosting.md): Run your own ComfyUI deployment: bare metal, GPU cloud providers like Runpod and Vast.ai, or community Docker images

##### Self-Hosted Server API

- [Server Overview](https://docs.comfy.org/development/comfyui-server/comms_overview.md): Run ComfyUI as a server and interact with it programmatically via REST and WebSocket APIs
- [API Examples](https://docs.comfy.org/development/comfyui-server/api-examples.md): Three common patterns for calling the ComfyUI Server API
- [ComfyUI Server Routes (HTTP and WebSocket API)](https://docs.comfy.org/development/comfyui-server/comms_routes.md): ComfyUI Server API routes: built-in GET, POST, and WebSocket endpoints for prompts, queue, history, models, and user data, plus how to add custom routes.
- [ComfyUI Server Messages (WebSocket API)](https://docs.comfy.org/development/comfyui-server/comms_messages.md): How ComfyUI's PromptExecutor sends WebSocket messages to the client, built-in types like execution_start and progress, and registering custom message types.
- [Startup Flags](https://docs.comfy.org/development/comfyui-server/startup-flags.md): ComfyUI startup flags reference: every main.py command-line argument from comfy/cli_args.py, plus how to add flags to Windows Portable .bat launchers.
- [ComfyUI Account API Key Integration](https://docs.comfy.org/development/comfyui-server/api-key-integration.md): This article explains how to use ComfyUI Account API Key to call paid Partner Nodes in headless mode

### Run Workflows

- [Running Workflows](https://docs.comfy.org/development/run-workflows/overview.md): How to run ComfyUI workflows against a live deployment, and which client works with which deployment
- [Comfy SDKs](https://docs.comfy.org/development/api-development/sdks.md): Official Python and TypeScript SDKs for running ComfyUI workflows from your own application
- [API Proxy for Self-Hosted ComfyUI](https://docs.comfy.org/development/comfyui-server/api-proxy.md): Serve the Comfy API v2 in front of your own ComfyUI so the official SDKs can run workflows against it
- [Workflow API Format](https://docs.comfy.org/development/api-development/workflow-api-format.md): Understanding the API format for ComfyUI workflows and how to export them
- [Workflow Metadata](https://docs.comfy.org/development/api-development/workflow-metadata.md): Learn how ComfyUI embeds workflows in generated files and how to read the embedded metadata

#### Comfy API Reference

- [Comfy API](https://docs.comfy.org/development/comfy-api/overview.md): The public API for running ComfyUI workflows headlessly

##### v2

- [Comfy API v2 Overview](https://docs.comfy.org/api-reference/v2/overview.md): Reference for the official Comfy API v2: run ComfyUI workflows from external applications by uploading inputs, submitting jobs, and polling for results.
- [Design Notes](https://docs.comfy.org/development/api-development/sdks-design.md): Why the Comfy API v2 exists, how it relates to the existing ComfyUI APIs, and what is coming next

###### API Reference

###### assets

- [Upload an asset (single-call multipart)](https://docs.comfy.org/api-reference/v2/assets/upload-an-asset-single-call-multipart.md): Single-call `multipart/form-data` upload. The platform streams the bytes through its trusted byte-path, dedups by the server-computed hash, and mints the asset record.
- [Mint an asset over existing bytes (dedup fast-path)](https://docs.comfy.org/api-reference/v2/assets/mint-an-asset-over-existing-bytes-dedup-fast-path.md): Zero-byte fast-path: mints a new asset UUID over a blob the platform already has, identified by its blake3 hash.
- [Existence check for a blob by blake3 hash](https://docs.comfy.org/api-reference/v2/assets/existence-check-for-a-blob-by-blake3-hash.md): `200` if the calling account can mint from this blob, `404` otherwise. Same account-scoping as `from-hash`; lets a client decide between the dedup fast-path and a full upload before sending bytes.
- [Asset metadata](https://docs.comfy.org/api-reference/v2/assets/asset-metadata.md): Returns the asset object with a fresh short-lived `url` for the content. Re-fetching always yields fresh URLs.
- [Delete an asset record](https://docs.comfy.org/api-reference/v2/assets/delete-an-asset-record.md): Deletes the asset RECORD. The underlying content-addressed blob is untouched while any other asset still references it (hash dedup means blobs are shared) — deleting an asset never destroys another asset's bytes.
- [Asset bytes](https://docs.comfy.org/api-reference/v2/assets/asset-bytes.md): Serves the bytes directly on surfaces where the platform stores blobs itself (self-hosted); on Cloud and serverless issues a `302` to a fresh signed URL. Range requests are supported for resumable downloads of large outputs.

###### jobs

- [Submit a workflow for execution](https://docs.comfy.org/api-reference/v2/jobs/submit-a-workflow-for-execution.md): Accepts the API-format workflow graph verbatim. Validation is synchronous: graph structure, unknown node classes, and asset references (`core/ASSET` objects — every referenced `id` must exist and be owned by the caller). A `201` means the job is durably recorded and queued.
- [Job status (the polling workhorse)](https://docs.comfy.org/api-reference/v2/jobs/job-status-the-polling-workhorse.md): Returns the full job object: current status, the latest progress snapshot, and every output committed so far (`outputs` populates incrementally while the job runs). This is the authoritative, resumable view of a job; everything on the SSE stream is derived from it.
- [The workflow behind a job — authoring version if pinned, executed graph otherwise](https://docs.comfy.org/api-reference/v2/jobs/the-workflow-behind-a-job-—-authoring-version-if-pinned-executed-graph-otherwise.md): Returns the workflow behind a job. The response's `format` field says which of two different shapes `workflow` is in:
- [What the run printed](https://docs.comfy.org/api-reference/v2/jobs/what-the-run-printed.md): Returns the job's captured execution log. Fetched on demand: a log is a debugging artifact a caller wants occasionally, while `GET /api/v2/jobs/{id}` is polled to terminal on every run, so the log is a resource of its own rather than a field that would ride every one of those polls to be read at mos…
- [Live event stream (SSE)](https://docs.comfy.org/api-reference/v2/jobs/live-event-stream-sse.md): Server-Sent Events stream of the job's live state. On connect the client receives the current snapshot (a `status` event, the latest `progress`, and the most recent `preview` if any), then future updates. The stream ends after the terminal `status` event.
- [Request cancellation](https://docs.comfy.org/api-reference/v2/jobs/request-cancellation.md): Requests cancellation and returns the current job object — `canceling` (interruption takes effect at node/step boundaries) or already-terminal. Idempotent: canceling a finished job is a no-op returning the terminal state. On serverless, GPU seconds consumed before the interrupt takes effect are stil…

##### v1 Cloud API (deprecated)

- [v1 Cloud API Overview](https://docs.comfy.org/development/cloud/overview.md): The deprecated v1 Cloud API surface: authentication and the Cloud-specific endpoints Comfy API v2 does not expose
- [Cloud API Reference](https://docs.comfy.org/development/cloud/api-reference.md): Complete API reference with code examples for Comfy Cloud
- [OpenAPI Specification](https://docs.comfy.org/development/cloud/openapi.md): Machine-readable OpenAPI specification for Comfy Cloud API

###### Cloud API Reference

###### workflow

- [Get information about current prompt executions](https://docs.comfy.org/api-reference/cloud/workflow/get-information-about-current-prompt-executions.md): Returns information about current prompts in the execution queue
- [Submit a workflow for execution](https://docs.comfy.org/api-reference/cloud/workflow/submit-a-workflow-for-execution.md): Submit a workflow to be executed by the backend. The workflow is a JSON object describing the nodes and their connections.
- [Get available workflow templates](https://docs.comfy.org/api-reference/cloud/workflow/get-available-workflow-templates.md): Returns available workflow templates
- [Get available subgraph blueprints](https://docs.comfy.org/api-reference/cloud/workflow/get-available-subgraph-blueprints.md): Returns a list of globally available subgraph blueprints. These are pre-built workflow components that can be used as nodes. The data field contains a promise that resolves to the full subgraph JSON.
- [Get a specific subgraph blueprint](https://docs.comfy.org/api-reference/cloud/workflow/get-a-specific-subgraph-blueprint.md): Returns the full data for a specific subgraph blueprint by ID

###### node

- [Get all node information](https://docs.comfy.org/api-reference/cloud/node/get-all-node-information.md): Returns information about all available nodes
- [Get server feature flags](https://docs.comfy.org/api-reference/cloud/node/get-server-feature-flags.md): Returns the server's feature capabilities

###### model

- [Get available model folders](https://docs.comfy.org/api-reference/cloud/model/get-available-model-folders.md): Returns a list of model folders available in the system. This is an experimental endpoint that replaces the legacy /models endpoint.
- [Get models in a specific folder](https://docs.comfy.org/api-reference/cloud/model/get-models-in-a-specific-folder.md): Returns a list of models available in the specified folder. This is an experimental endpoint that provides enhanced model information.
- [Get model preview image](https://docs.comfy.org/api-reference/cloud/model/get-model-preview-image.md): Returns a preview image for the specified model. The image is returned in WebP format for optimal performance.

###### job

- [Manage execution history](https://docs.comfy.org/api-reference/cloud/job/manage-execution-history.md): Clear all history for the authenticated user or delete specific job IDs. Supports clearing all history or deleting specific job IDs.
- [Get execution history (v2)](https://docs.comfy.org/api-reference/cloud/job/get-execution-history-v2.md): **Deprecated.** Use [`/api/jobs`](#tag/job/GET/api/jobs) instead. This endpoint is maintained for ComfyUI compatibility but will be removed in a future release; no removal date set.
- [Get history for specific prompt](https://docs.comfy.org/api-reference/cloud/job/get-history-for-specific-prompt.md): **Deprecated.** Use [`/api/jobs/{job_id}`](#tag/job/GET/api/jobs/{job_id}) instead — the `prompt_id` returned by `/api/prompt` is the same value as `job_id`. This endpoint is maintained for ComfyUI compatibility but will be removed in a future release; no removal date set.
- [List jobs with pagination and filtering](https://docs.comfy.org/api-reference/cloud/job/list-jobs-with-pagination-and-filtering.md): Retrieve a paginated list of jobs for the authenticated user. Returns lightweight job data optimized for list views. Workflow and full outputs are excluded to reduce payload size.
- [Get full job details](https://docs.comfy.org/api-reference/cloud/job/get-full-job-details.md): Retrieve complete details for a specific job including workflow and outputs. Used for detail views, workflow re-execution, and debugging.
- [Get queue information](https://docs.comfy.org/api-reference/cloud/job/get-queue-information.md): Returns information about running and pending items in the queue
- [Manage queue operations](https://docs.comfy.org/api-reference/cloud/job/manage-queue-operations.md): Cancel specific PENDING jobs by ID or clear all pending jobs in the queue. Note: This endpoint only affects pending jobs. To cancel running jobs, use /api/interrupt.
- [Interrupt currently running jobs](https://docs.comfy.org/api-reference/cloud/job/interrupt-currently-running-jobs.md): Cancel all currently RUNNING jobs for the authenticated user. This will interrupt any job that is currently in 'in_progress' status. Note: This endpoint only affects running jobs. To cancel pending jobs, use /api/queue.
- [Get job status](https://docs.comfy.org/api-reference/cloud/job/get-job-status.md): Returns the current status of a specific job by ID

###### file

- [View a file](https://docs.comfy.org/api-reference/cloud/file/view-a-file.md): Retrieve and view a file from the ComfyUI file system. This endpoint is typically used to view generated images or other output files.
- [Get related mask layer files](https://docs.comfy.org/api-reference/cloud/file/get-related-mask-layer-files.md): Given a mask file (any of the 4 layers), returns all related mask layer files. This is used by the mask editor to load the paint, mask, and painted layers when reopening a previously edited mask.
- [Upload an image file](https://docs.comfy.org/api-reference/cloud/file/upload-an-image-file.md): Upload an image file to cloud storage.
- [Upload a mask image](https://docs.comfy.org/api-reference/cloud/file/upload-a-mask-image.md): Upload a mask image to be applied to an existing image.

###### asset

- [List user assets](https://docs.comfy.org/api-reference/cloud/asset/list-user-assets.md): Retrieves a paginated list of assets belonging to the authenticated user. Supports filtering by tags, name, metadata, and sorting options.
- [Upload a new asset](https://docs.comfy.org/api-reference/cloud/asset/upload-a-new-asset.md): Uploads a new asset to the system with associated metadata. Supports two upload methods: 1. Direct file upload (multipart/form-data) 2. URL-based upload (application/json with source: "url")
- [Create asset reference from existing hash](https://docs.comfy.org/api-reference/cloud/asset/create-asset-reference-from-existing-hash.md): Creates a new asset reference using an existing hash from cloud storage. This avoids re-uploading file content when the underlying data already exists, which is useful for large files or when referencing well-known assets. The user provides their own metadata and tags for the new reference.
- [Get asset metadata from remote URL](https://docs.comfy.org/api-reference/cloud/asset/get-asset-metadata-from-remote-url.md): Retrieves metadata for an asset from a remote download URL without downloading the entire file. Supports various sources including CivitAI and other model repositories. Uses HEAD requests or API calls to fetch metadata efficiently. This endpoint is for previewing metadata before downloading, not for…
- [Initiate background download for large files](https://docs.comfy.org/api-reference/cloud/asset/initiate-background-download-for-large-files.md): Initiates a background download job for large files from Huggingface or Civitai.
- [Get asset details](https://docs.comfy.org/api-reference/cloud/asset/get-asset-details.md): Retrieves detailed information about a specific asset
- [Update asset metadata](https://docs.comfy.org/api-reference/cloud/asset/update-asset-metadata.md): Updates an asset's metadata. At least one field must be provided. Only name, tags, and user_metadata can be updated.
- [Delete asset](https://docs.comfy.org/api-reference/cloud/asset/delete-asset.md): Deletes an asset and its content from storage. Both the database record and storage content are deleted.
- [Add tags to asset](https://docs.comfy.org/api-reference/cloud/asset/add-tags-to-asset.md): Adds one or more tags to an existing asset
- [Remove tags from asset](https://docs.comfy.org/api-reference/cloud/asset/remove-tags-from-asset.md): Removes one or more tags from an existing asset
- [List all tags](https://docs.comfy.org/api-reference/cloud/asset/list-all-tags.md): Retrieves a list of all tags used across assets. Includes usage counts and filtering options.
- [Get tag histogram for filtered assets](https://docs.comfy.org/api-reference/cloud/asset/get-tag-histogram-for-filtered-assets.md): Returns a histogram of tags appearing on assets matching the given filters. Useful for refining asset searches by showing available tags and their counts. Only returns tags with non-zero counts (tags that exist on matching assets).
- [Check if asset exists by hash](https://docs.comfy.org/api-reference/cloud/asset/check-if-asset-exists-by-hash.md): Checks if content with the given hash exists in cloud storage. Returns 200 if the content exists, 404 if it doesn't. Useful for checking availability before using `/api/assets/from-hash`.

###### user

- [List user data files](https://docs.comfy.org/api-reference/cloud/user/list-user-data-files.md): Returns a list of user data files in the specified directory, optionally recursively and with full metadata.
- [Get user data file](https://docs.comfy.org/api-reference/cloud/user/get-user-data-file.md): Returns the requested user data file if it exists.
- [Upload or update a user data file](https://docs.comfy.org/api-reference/cloud/user/upload-or-update-a-user-data-file.md): Upload a file to a user's data directory. Optional query parameters allow control over overwrite behavior and response detail.
- [Delete a user data file](https://docs.comfy.org/api-reference/cloud/user/delete-a-user-data-file.md): Delete a user data file from the database. The file parameter should be the relative path within the user's data directory.
- [Get current user information](https://docs.comfy.org/api-reference/cloud/user/get-current-user-information.md): Returns information about the currently authenticated user

###### system

- [Get system statistics](https://docs.comfy.org/api-reference/cloud/system/get-system-statistics.md): Returns system statistics including ComfyUI version, device info, and system resources

###### billing

- [Get workspace usage over time](https://docs.comfy.org/api-reference/cloud/billing/get-workspace-usage-over-time.md): Returns billed usage for the workspace the API key belongs to, split into time buckets and grouped by model, endpoint, or product. Use it to reconcile spend, attribute cost across models, or feed an internal cost report.

### Comfy Router

- [Comfy Router quickstart](https://docs.comfy.org/development/comfy-router/quickstart.md): From nothing to a generated image in about five minutes, in Python and TypeScript, against the Comfy Router.
- [Using the Comfy Router API](https://docs.comfy.org/development/comfy-router/api.md): Choose models, inspect schemas, call Router safely, and handle results, errors, retries, and billing.
- [Comfy Router headers](https://docs.comfy.org/development/comfy-router/headers.md): The request headers you can send to Comfy Router and the response headers it returns, for every model: authentication, idempotency, request IDs, error buckets, retry pacing and spend limits.
- [Comfy Router API reference](https://docs.comfy.org/development/comfy-router/reference.md): Every Comfy Router endpoint, parameter, response body and error bucket, generated from the Comfy API contract.
- [Comfy Router capabilities and limits](https://docs.comfy.org/development/comfy-router/limitations.md): Choose Router or a partner proxy, plan for long-running calls, and understand recovery, rate limits, and asset storage.

#### Models

- [Comfy Router models](https://docs.comfy.org/development/comfy-router/models.md): Every model available through Comfy Router, grouped by provider.

##### Anthropic

- [Use Claude Fable 5.1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-fable-5-1/code.md): Call anthropic/claude-fable-5-1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Fable 5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-fable-5/code.md): Call anthropic/claude-fable-5 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Haiku 4.5 20251001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-haiku-4-5-20251001/code.md): Call anthropic/claude-haiku-4-5-20251001 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Opus 4.6 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-opus-4-6/code.md): Call anthropic/claude-opus-4-6 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Opus 4.7 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-opus-4-7/code.md): Call anthropic/claude-opus-4-7 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Opus 4.8 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-opus-4-8/code.md): Call anthropic/claude-opus-4-8 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Opus 5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-opus-5/code.md): Call anthropic/claude-opus-5 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Sonnet 4.5 20250929 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-sonnet-4-5-20250929/code.md): Call anthropic/claude-sonnet-4-5-20250929 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Sonnet 4.6 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-sonnet-4-6/code.md): Call anthropic/claude-sonnet-4-6 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Claude Sonnet 5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/anthropic/claude-sonnet-5/code.md): Call anthropic/claude-sonnet-5 through Comfy Router: endpoint, request shape and the response Router returns.

##### Beeble

- [Use SwitchX with Comfy Router](https://docs.comfy.org/development/comfy-router/models/beeble/switchx/code.md): Call beeble/switchx through Comfy Router: endpoint, request shape and the response Router returns.

##### Black Forest Labs

- [Use Erase V1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/erase-v1/code.md): Call bfl/erase-v1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Flux 1.1 Pro Ultra Image with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-1-1-pro-ultra-image/code.md): Python, TypeScript and cURL snippets for calling FLUX 1.1 [pro] Ultra and FLUX 1.1 [pro] over HTTP through Comfy Router, plus the request fields and the result shape
- [Use FLUX.1 Kontext with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-1-kontext/code.md): Python, TypeScript and cURL snippets for calling FLUX.1 Kontext Pro and Kontext Max over HTTP through Comfy Router, plus the request fields and the result shape
- [Use FLUX 2 Max with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-2-max/code.md): Call bfl/flux-2-max through Comfy Router: endpoint, request shape and the response Router returns.
- [Use FLUX 2 Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-2-pro/code.md): Call bfl/flux-2-pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use FLUX 3 Video with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-3-video/code.md): Python, TypeScript and cURL snippets for generating video with synchronized audio from FLUX 3 over HTTP through Comfy Router, plus the request fields and the result shape
- [Use FLUX Pro 1.0 Canny with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-pro-1-0-canny/code.md): Call bfl/flux-pro-1.0-canny through Comfy Router: endpoint, request shape and the response Router returns.
- [Use FLUX Pro 1.0 Depth with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-pro-1-0-depth/code.md): Call bfl/flux-pro-1.0-depth through Comfy Router: endpoint, request shape and the response Router returns.
- [Use FLUX Pro 1.0 Expand with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-pro-1-0-expand/code.md): Call bfl/flux-pro-1.0-expand through Comfy Router: endpoint, request shape and the response Router returns.
- [Use FLUX Pro 1.0 Fill with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-pro-1-0-fill/code.md): Call bfl/flux-pro-1.0-fill through Comfy Router: endpoint, request shape and the response Router returns.
- [Use FLUX Video Upscale with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/flux-video-upscale/code.md): Python, TypeScript and cURL snippets for upscaling a video with FLUX Video Upscale over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Video Edit V1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/video-edit-v1/code.md): Call bfl/video-edit-v1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use VTO V1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/black-forest-labs/vto-v1/code.md): Call bfl/vto-v1 through Comfy Router: endpoint, request shape and the response Router returns.

##### Bria

- [Use Fibo with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/fibo/code.md): Call bria/fibo through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Image Edit Erase with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/image-edit-erase/code.md): Call bria/image-edit-erase through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Image Edit Expand with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/image-edit-expand/code.md): Call bria/image-edit-expand through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Image Edit Gen Fill with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/image-edit-gen-fill/code.md): Call bria/image-edit-gen-fill through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Image Edit Increase Resolution with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/image-edit-increase-resolution/code.md): Call bria/image-edit-increase-resolution through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Image Edit Remove Background with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/image-edit-remove-background/code.md): Call bria/image-edit-remove-background through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Structured Instruction with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/structured-instruction/code.md): Call bria/structured-instruction through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Video Edit Green Screen with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/video-edit-green-screen/code.md): Call bria/video-edit-green-screen through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Video Edit Remove Background with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/video-edit-remove-background/code.md): Call bria/video-edit-remove-background through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Video Edit Replace Background with Comfy Router](https://docs.comfy.org/development/comfy-router/models/bria/video-edit-replace-background/code.md): Call bria/video-edit-replace-background through Comfy Router: endpoint, request shape and the response Router returns.

##### BytePlus

- [Use Dreamina Seedance 2.0 260128 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/dreamina-seedance-2-0-260128/code.md): Call byteplus/dreamina-seedance-2-0-260128 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Dreamina Seedance 2.0 Fast 260128 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/dreamina-seedance-2-0-fast-260128/code.md): Call byteplus/dreamina-seedance-2-0-fast-260128 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Dreamina Seedance 2.0 Mini with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/dreamina-seedance-2-0-mini/code.md): Call byteplus/dreamina-seedance-2-0-mini through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Dreamina Seedance 2.5 260628 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/dreamina-seedance-2-5-260628/code.md): Call byteplus/dreamina-seedance-2-5-260628 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seed 2.0 Lite 260228 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seed-2-0-lite-260228/code.md): Call byteplus/seed-2-0-lite-260228 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seed 2.0 Mini 260215 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seed-2-0-mini-260215/code.md): Call byteplus/seed-2-0-mini-260215 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seed 2.0 Pro 260328 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seed-2-0-pro-260328/code.md): Call byteplus/seed-2-0-pro-260328 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seed Audio 1.0 Multilingual with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seed-audio-1-0-multilingual/code.md): Call byteplus/seed-audio-1.0-multilingual through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seed Audio 1.0 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seed-audio-1-0/code.md): Call byteplus/seed-audio-1.0 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedance 1.0 Lite I2V 250428 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedance-1-0-lite-i2v-250428/code.md): Call byteplus/seedance-1-0-lite-i2v-250428 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedance 1.0 Lite T2V 250428 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedance-1-0-lite-t2v-250428/code.md): Call byteplus/seedance-1-0-lite-t2v-250428 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedance 1.0 Pro 250528 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedance-1-0-pro-250528/code.md): Call byteplus/seedance-1-0-pro-250528 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedance 1.0 Pro Fast 251015 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedance-1-0-pro-fast-251015/code.md): Call byteplus/seedance-1-0-pro-fast-251015 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedance 1.5 Pro 251215 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedance-1-5-pro-251215/code.md): Call byteplus/seedance-1-5-pro-251215 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seededit 3.0 I2I 250628 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seededit-3-0-i2i-250628/code.md): Call byteplus/seededit-3-0-i2i-250628 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedream 3.0 T2I 250415 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedream-3-0-t2i-250415/code.md): Call byteplus/seedream-3-0-t2i-250415 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedream 4.0 250828 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedream-4-0-250828/code.md): Call byteplus/seedream-4-0-250828 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedream 4.5 251128 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedream-4-5-251128/code.md): Call byteplus/seedream-4-5-251128 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedream 5.0 260128 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedream-5-0-260128/code.md): Call byteplus/seedream-5-0-260128 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedream 5.0 Pro 260628 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/byteplus/seedream-5-0-pro-260628/code.md): Call byteplus/seedream-5-0-pro-260628 through Comfy Router: endpoint, request shape and the response Router returns.

##### Elevenlabs

- [Use Eleven Sfx V2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/elevenlabs/eleven-sfx-v2/code.md): Call elevenlabs/eleven_sfx_v2 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Eleven V3 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/elevenlabs/eleven-v3/code.md): Call elevenlabs/eleven_v3 through Comfy Router: endpoint, request shape and the response Router returns.

##### fal

- [Use H3 Max Turbo with Comfy Router](https://docs.comfy.org/development/comfy-router/models/fal/h3-max-turbo/code.md): Call fal/h3-max-turbo through Comfy Router: endpoint, request shape and the response Router returns.
- [Use H3 Max with Comfy Router](https://docs.comfy.org/development/comfy-router/models/fal/h3-max/code.md): Call fal/h3-max through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Patina with Comfy Router](https://docs.comfy.org/development/comfy-router/models/fal/patina/code.md): Call fal/patina through Comfy Router: endpoint, request shape and the response Router returns.

##### Freepik

- [Use AI Image Upscaler Precision V2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/freepik/ai-image-upscaler-precision-v2/code.md): Call freepik/ai-image-upscaler-precision-v2 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use AI Skin Enhancer Creative with Comfy Router](https://docs.comfy.org/development/comfy-router/models/freepik/ai-skin-enhancer-creative/code.md): Call freepik/ai-skin-enhancer-creative through Comfy Router: endpoint, request shape and the response Router returns.
- [Use AI Skin Enhancer Faithful with Comfy Router](https://docs.comfy.org/development/comfy-router/models/freepik/ai-skin-enhancer-faithful/code.md): Call freepik/ai-skin-enhancer-faithful through Comfy Router: endpoint, request shape and the response Router returns.
- [Use AI Skin Enhancer Flexible with Comfy Router](https://docs.comfy.org/development/comfy-router/models/freepik/ai-skin-enhancer-flexible/code.md): Call freepik/ai-skin-enhancer-flexible through Comfy Router: endpoint, request shape and the response Router returns.

##### Gemini Interactions

- [Use Gemini Omni 1.1 Flash with Comfy Router](https://docs.comfy.org/development/comfy-router/models/gemini-interactions/gemini-omni-1-1-flash/code.md): Call gemini-interactions/gemini-omni-1.1-flash through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Gemini Omni Flash Preview with Comfy Router](https://docs.comfy.org/development/comfy-router/models/gemini-interactions/gemini-omni-flash-preview/code.md): Call gemini-interactions/gemini-omni-flash-preview through Comfy Router: endpoint, request shape and the response Router returns.

##### Google

- [Use Gemini 2.5 Flash Image with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/gemini-2-5-flash-image/code.md): Call vertexai/gemini-2.5-flash-image through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Gemini 3.1 Flash Lite with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/gemini-3-1-flash-lite/code.md): Call vertexai/gemini-3.1-flash-lite through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Gemini 3.7 Flash with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/gemini-3-7-flash/code.md): Call vertexai/gemini-3.7-flash through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Gemini 3.8 Flash with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/gemini-3-8-flash/code.md): Call vertexai/gemini-3.8-flash through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Google Gemini with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/gemini/code.md): Python, TypeScript and cURL snippets for calling Google Gemini text models over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Imagen 3.0 Fast Generate 001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/imagen-3-0-fast-generate-001/code.md): Call vertexai/imagen-3.0-fast-generate-001 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Imagen 3.0 Generate 001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/imagen-3-0-generate-001/code.md): Call vertexai/imagen-3.0-generate-001 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Imagen 3.0 Generate 002 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/imagen-3-0-generate-002/code.md): Call vertexai/imagen-3.0-generate-002 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Nano Banana 2 Lite with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/nano-banana-2-lite/code.md): Python, TypeScript and cURL snippets for generating images with Nano Banana 2 Lite (Gemini 3.1 Flash-Lite Image) over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Nano Banana 2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/nano-banana-2/code.md): Python, TypeScript and cURL snippets for generating images with Nano Banana 2 (Gemini 3.1 Flash Image) over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Nano Banana Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/google/nano-banana-pro/code.md): Python, TypeScript and cURL snippets for generating images with Nano Banana Pro (Gemini 3 Pro Image) over HTTP through Comfy Router, plus the request fields and the result shape

##### HeyGen

- [Use Starfish with Comfy Router](https://docs.comfy.org/development/comfy-router/models/heygen/starfish/code.md): Call heygen/starfish through Comfy Router: endpoint, request shape and the response Router returns.

##### Ideogram

- [Use Ideogram V3 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/ideogram/ideogram-v3/code.md): Call ideogram/ideogram-v3 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Ideogram 4.0 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/ideogram/ideogram-v4/code.md): Python, TypeScript and cURL snippets for generating images with Ideogram 4.0 over HTTP through Comfy Router, plus the request fields and the result shape
- [Use P Image Ideogram with Comfy Router](https://docs.comfy.org/development/comfy-router/models/ideogram/p-image-ideogram/code.md): Call ideogram/p-image-ideogram through Comfy Router: endpoint, request shape and the response Router returns.

##### Kling

- [Use Kling 3.0 Turbo with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-3-0-turbo/code.md): Call kling/kling-3.0-turbo through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling Image O1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-image-o1/code.md): Call kling/kling-image-o1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V1.5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v1-5/code.md): Call kling/kling-v1-5 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V1.6 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v1-6/code.md): Call kling/kling-v1-6 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v1/code.md): Call kling/kling-v1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V2.1 Master with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v2-1-master/code.md): Call kling/kling-v2-1-master through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V2.1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v2-1/code.md): Call kling/kling-v2-1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V2.5 Turbo with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v2-5-turbo/code.md): Call kling/kling-v2-5-turbo through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V2.6 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v2-6/code.md): Call kling/kling-v2-6 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V2 Master with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v2-master/code.md): Call kling/kling-v2-master through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V3 Omni with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v3-omni/code.md): Call kling/kling-v3-omni through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling V3 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-v3/code.md): Call kling/kling-v3 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Kling Video O1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/kling-video-o1/code.md): Call kling/kling-video-o1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Videos Avatar Image 2video with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/videos-avatar-image2video/code.md): Call kling/videos-avatar-image2video through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Videos Lip Sync with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/videos-lip-sync/code.md): Call kling/videos-lip-sync through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Videos Video Extend with Comfy Router](https://docs.comfy.org/development/comfy-router/models/kling/videos-video-extend/code.md): Call kling/videos-video-extend through Comfy Router: endpoint, request shape and the response Router returns.

##### Krea

- [Use Krea 2 Large with Comfy Router](https://docs.comfy.org/development/comfy-router/models/krea/krea-2-large/code.md): Call krea/krea-2-large through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Krea 2 Medium Turbo with Comfy Router](https://docs.comfy.org/development/comfy-router/models/krea/krea-2-medium-turbo/code.md): Call krea/krea-2-medium-turbo through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Krea 2 Medium with Comfy Router](https://docs.comfy.org/development/comfy-router/models/krea/krea-2-medium/code.md): Call krea/krea-2-medium through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Krea 2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/krea/krea-2/code.md): Call krea/krea-2 through Comfy Router: endpoint, request shape and the response Router returns.

##### LTX

- [Use LTX 2.5 Fast with Comfy Router](https://docs.comfy.org/development/comfy-router/models/ltx/ltx-2-5-fast/code.md): Call ltx/ltx-2-5-fast through Comfy Router: endpoint, request shape and the response Router returns.
- [Use LTX 2.5 Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/ltx/ltx-2-5-pro/code.md): Call ltx/ltx-2-5-pro through Comfy Router: endpoint, request shape and the response Router returns.

##### Luma

- [Use Photon 1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/luma/photon-1/code.md): Call luma/photon-1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Photon Flash 1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/luma/photon-flash-1/code.md): Call luma/photon-flash-1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Ray 2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/luma/ray-2/code.md): Call luma/ray-2 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Ray Flash 2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/luma/ray-flash-2/code.md): Call luma/ray-flash-2 through Comfy Router: endpoint, request shape and the response Router returns.

##### Luma 2

- [Use Uni 1 Max with Comfy Router](https://docs.comfy.org/development/comfy-router/models/luma_2/uni-1-max/code.md): Call luma_2/uni-1-max through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Uni 1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/luma_2/uni-1/code.md): Call luma_2/uni-1 through Comfy Router: endpoint, request shape and the response Router returns.

##### Meshy

- [Use Animations with Comfy Router](https://docs.comfy.org/development/comfy-router/models/meshy/animations/code.md): Call meshy/animations through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Meshy 5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/meshy/meshy-5/code.md): Call meshy/meshy-5 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Meshy 6 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/meshy/meshy-6/code.md): Call meshy/meshy-6 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Meshy 7 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/meshy/meshy-7/code.md): Call meshy/meshy-7 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Remesh with Comfy Router](https://docs.comfy.org/development/comfy-router/models/meshy/remesh/code.md): Call meshy/remesh through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Rigging with Comfy Router](https://docs.comfy.org/development/comfy-router/models/meshy/rigging/code.md): Call meshy/rigging through Comfy Router: endpoint, request shape and the response Router returns.

##### MiniMax

- [Use MiniMax H3 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/minimax/minimax-h3/code.md): Call minimax/minimax-h3 through Comfy Router: endpoint, request shape and the response Router returns.

##### Moonvalley

- [Use Image To Video with Comfy Router](https://docs.comfy.org/development/comfy-router/models/moonvalley/image-to-video/code.md): Call moonvalley/image-to-video through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Text To Image with Comfy Router](https://docs.comfy.org/development/comfy-router/models/moonvalley/text-to-image/code.md): Call moonvalley/text-to-image through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Text To Video with Comfy Router](https://docs.comfy.org/development/comfy-router/models/moonvalley/text-to-video/code.md): Call moonvalley/text-to-video through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Video To Video Resize with Comfy Router](https://docs.comfy.org/development/comfy-router/models/moonvalley/video-to-video-resize/code.md): Call moonvalley/video-to-video-resize through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Video To Video with Comfy Router](https://docs.comfy.org/development/comfy-router/models/moonvalley/video-to-video/code.md): Call moonvalley/video-to-video through Comfy Router: endpoint, request shape and the response Router returns.

##### OpenAI

- [Use GPT 4.1 Mini with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-4-1-mini/code.md): Call openai/gpt-4.1-mini through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 4.1 Nano with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-4-1-nano/code.md): Call openai/gpt-4.1-nano through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 4.1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-4-1/code.md): Call openai/gpt-4.1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 4o with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-4o/code.md): Call openai/gpt-4o through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 5.5 Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-5-5-pro/code.md): Call openai/gpt-5.5-pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 5.5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-5-5/code.md): Call openai/gpt-5.5 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 5.6 Luna with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-5-6-luna/code.md): Call openai/gpt-5.6-luna through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 5.6 Sol with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-5-6-sol/code.md): Call openai/gpt-5.6-sol through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 5.6 Terra with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-5-6-terra/code.md): Call openai/gpt-5.6-terra through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 5 Mini with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-5-mini/code.md): Call openai/gpt-5-mini through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 5 Nano with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-5-nano/code.md): Call openai/gpt-5-nano through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-5/code.md): Call openai/gpt-5 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT 6 Astra with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-6-astra/code.md): Call openai/gpt-6-astra through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT Image 1.5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-image-1-5/code.md): Call openai/gpt-image-1.5 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT Image 1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-image-1/code.md): Call openai/gpt-image-1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT Image 2.5 Flare with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-image-2-5-flare/code.md): Call openai/gpt-image-2.5-flare through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT Image 2.5 Sunburst with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-image-2-5-sunburst/code.md): Call openai/gpt-image-2.5-sunburst through Comfy Router: endpoint, request shape and the response Router returns.
- [Use GPT Image 2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/gpt-image-2/code.md): Call openai/gpt-image-2 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use o1-pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/o1-pro/code.md): Call openai/o1-pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use o1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/o1/code.md): Call openai/o1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use o3 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/o3/code.md): Call openai/o3 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use o4-mini with Comfy Router](https://docs.comfy.org/development/comfy-router/models/openai/o4-mini/code.md): Call openai/o4-mini through Comfy Router: endpoint, request shape and the response Router returns.

##### Pruna

- [Use P Video 2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/pruna/p-video-2/code.md): Call pruna/p-video-2 through Comfy Router: endpoint, request shape and the response Router returns.

##### Qwen

- [Use Qwen Image 3.0 Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/qwen/qwen-image-3-0-pro/code.md): Call qwen/qwen-image-3.0-pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Qwen Image 3.0 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/qwen/qwen-image-3-0/code.md): Call qwen/qwen-image-3.0 through Comfy Router: endpoint, request shape and the response Router returns.

##### Recraft

- [Use Recraft V2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv2/code.md): Call recraft/recraftv2 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V3 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv3/code.md): Call recraft/recraftv3 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4.1 Pro Vector with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-1-pro-vector/code.md): Call recraft/recraftv4_1_pro_vector through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4.1 Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-1-pro/code.md): Call recraft/recraftv4_1_pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4.1 Utility Pro Vector with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-1-utility-pro-vector/code.md): Call recraft/recraftv4_1_utility_pro_vector through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4.1 Utility Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-1-utility-pro/code.md): Call recraft/recraftv4_1_utility_pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4.1 Utility Vector with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-1-utility-vector/code.md): Call recraft/recraftv4_1_utility_vector through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4.1 Utility with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-1-utility/code.md): Call recraft/recraftv4_1_utility through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4.1 Vector with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-1-vector/code.md): Call recraft/recraftv4_1_vector through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4.1 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-1/code.md): Call recraft/recraftv4_1 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4 Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-pro/code.md): Call recraft/recraftv4_pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4 Styles Pro Vector with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-styles-pro-vector/code.md): Call recraft/recraftv4_styles_pro_vector through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4 Styles Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-styles-pro/code.md): Call recraft/recraftv4_styles_pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4 Styles Vector with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-styles-vector/code.md): Call recraft/recraftv4_styles_vector through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4 Styles with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4-styles/code.md): Call recraft/recraftv4_styles through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Recraft V4 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/recraft/recraftv4/code.md): Call recraft/recraftv4 through Comfy Router: endpoint, request shape and the response Router returns.

##### Runway

- [Use Aleph 2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/runway/aleph2/code.md): Call runway/aleph2 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Gen 4 Image with Comfy Router](https://docs.comfy.org/development/comfy-router/models/runway/gen4-image/code.md): Call runway/gen4_image through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Gen 4 Turbo with Comfy Router](https://docs.comfy.org/development/comfy-router/models/runway/gen4-turbo/code.md): Call runway/gen4_turbo through Comfy Router: endpoint, request shape and the response Router returns.

##### Tencent

- [Use Hunyuan 3D Part with Comfy Router](https://docs.comfy.org/development/comfy-router/models/tencent/hunyuan-3d-part/code.md): Call tencent/hunyuan-3d-part through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Hunyuan 3D Smart Topology with Comfy Router](https://docs.comfy.org/development/comfy-router/models/tencent/hunyuan-3d-smart-topology/code.md): Call tencent/hunyuan-3d-smart-topology through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Hunyuan 3D Texture Edit with Comfy Router](https://docs.comfy.org/development/comfy-router/models/tencent/hunyuan-3d-texture-edit/code.md): Call tencent/hunyuan-3d-texture-edit through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Hunyuan 3D Uv with Comfy Router](https://docs.comfy.org/development/comfy-router/models/tencent/hunyuan-3d-uv/code.md): Call tencent/hunyuan-3d-uv through Comfy Router: endpoint, request shape and the response Router returns.

##### Veo

- [Use Veo 2.0 Generate 001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/veo/veo-2-0-generate-001/code.md): Call veo/veo-2.0-generate-001 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Veo 3.0 Fast Generate 001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/veo/veo-3-0-fast-generate-001/code.md): Call veo/veo-3.0-fast-generate-001 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Veo 3.0 Generate 001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/veo/veo-3-0-generate-001/code.md): Call veo/veo-3.0-generate-001 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Veo 3.1 Fast Generate 001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/veo/veo-3-1-fast-generate-001/code.md): Call veo/veo-3.1-fast-generate-001 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Veo 3.1 Generate 001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/veo/veo-3-1-generate-001/code.md): Call veo/veo-3.1-generate-001 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Veo 3.1 Lite Generate 001 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/veo/veo-3-1-lite-generate-001/code.md): Call veo/veo-3.1-lite-generate-001 through Comfy Router: endpoint, request shape and the response Router returns.

##### Wan

- [Use HappyHorse 1.0 I2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/happyhorse-1-0-i2v/code.md): Python, TypeScript and cURL snippets for calling wan/happyhorse-1.0-i2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use HappyHorse 1.0 R2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/happyhorse-1-0-r2v/code.md): Python, TypeScript and cURL snippets for calling wan/happyhorse-1.0-r2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use HappyHorse 1.0 T2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/happyhorse-1-0-t2v/code.md): Python, TypeScript and cURL snippets for calling wan/happyhorse-1.0-t2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use HappyHorse 1.0 Video Edit with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/happyhorse-1-0-video-edit/code.md): Python, TypeScript and cURL snippets for calling wan/happyhorse-1.0-video-edit over HTTP through Comfy Router, plus the request fields and the result shape
- [Use HappyHorse 1.1 I2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/happyhorse-1-1-i2v/code.md): Python, TypeScript and cURL snippets for calling wan/happyhorse-1.1-i2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use HappyHorse 1.1 R2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/happyhorse-1-1-r2v/code.md): Python, TypeScript and cURL snippets for calling wan/happyhorse-1.1-r2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use HappyHorse 1.1 T2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/happyhorse-1-1-t2v/code.md): Python, TypeScript and cURL snippets for calling wan/happyhorse-1.1-t2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.5 I2I Preview with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-5-i2i-preview/code.md): Call wan/wan2.5-i2i-preview through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Wan 2.5 I2V Preview with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-5-i2v-preview/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.5-i2v-preview over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.5 T2I Preview with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-5-t2i-preview/code.md): Call wan/wan2.5-t2i-preview through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Wan 2.5 T2V Preview with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-5-t2v-preview/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.5-t2v-preview over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.6 I2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-6-i2v/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.6-i2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.6 R2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-6-r2v/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.6-r2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.6 T2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-6-t2v/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.6-t2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.7 I2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-7-i2v/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.7-i2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.7 R2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-7-r2v/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.7-r2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.7 T2V with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-7-t2v/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.7-t2v over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 2.7 Video Edit with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan2-7-videoedit/code.md): Python, TypeScript and cURL snippets for calling wan/wan2.7-videoedit over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 3.0 Video Prime with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan3-0-video-prime/code.md): Python, TypeScript and cURL snippets for calling wan/wan3.0-video-prime over HTTP through Comfy Router, plus the request fields and the result shape
- [Use Wan 3.0 Video with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wan/wan3-0-video/code.md): Python, TypeScript and cURL snippets for calling wan/wan3.0-video over HTTP through Comfy Router, plus the request fields and the result shape

##### WaveSpeed

- [Use Flashvsr with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wavespeed/flashvsr/code.md): Call wavespeed/flashvsr through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Seedvr 2 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wavespeed/seedvr2/code.md): Call wavespeed/seedvr2 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Ultimate Image Upscaler with Comfy Router](https://docs.comfy.org/development/comfy-router/models/wavespeed/ultimate-image-upscaler/code.md): Call wavespeed/ultimate-image-upscaler through Comfy Router: endpoint, request shape and the response Router returns.

##### xAI

- [Use Grok Imagine Image 2.0 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/xai/grok-imagine-image-2-0/code.md): Call xai/grok-imagine-image-2.0 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Grok Imagine Image Pro with Comfy Router](https://docs.comfy.org/development/comfy-router/models/xai/grok-imagine-image-pro/code.md): Call xai/grok-imagine-image-pro through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Grok Imagine Image Quality with Comfy Router](https://docs.comfy.org/development/comfy-router/models/xai/grok-imagine-image-quality/code.md): Call xai/grok-imagine-image-quality through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Grok Imagine Image with Comfy Router](https://docs.comfy.org/development/comfy-router/models/xai/grok-imagine-image/code.md): Call xai/grok-imagine-image through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Grok Imagine Video 1.5 Preview with Comfy Router](https://docs.comfy.org/development/comfy-router/models/xai/grok-imagine-video-1-5-preview/code.md): Call xai/grok-imagine-video-1.5-preview through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Grok Imagine Video 1.5 with Comfy Router](https://docs.comfy.org/development/comfy-router/models/xai/grok-imagine-video-1-5/code.md): Call xai/grok-imagine-video-1.5 through Comfy Router: endpoint, request shape and the response Router returns.
- [Use Grok Imagine Video with Comfy Router](https://docs.comfy.org/development/comfy-router/models/xai/grok-imagine-video/code.md): Call xai/grok-imagine-video through Comfy Router: endpoint, request shape and the response Router returns.

### Comfy CLI

- [Getting Started](https://docs.comfy.org/comfy-cli/getting-started.md): Install comfy-cli, set up local or cloud routing, generate with partner nodes, and run workflows from the terminal.
- [Reference](https://docs.comfy.org/comfy-cli/reference.md): Full reference for the Comfy CLI, covering installation commands, node management, and model downloads for setting up and managing ComfyUI from the terminal.
- [Troubleshooting](https://docs.comfy.org/comfy-cli/troubleshooting.md): Troubleshooting guide for the Comfy CLI, covering prerequisites like installing git before you can use CLI commands.

### Specifications

#### Workflow JSON

- [Workflow JSON](https://docs.comfy.org/specs/workflow_json.md): Workflow JSON schema for the ComfyUI workflow file format (v1.0 plus legacy v0.4), covering nodes, links, groups, and version fields.
- [Workflow JSON 0.4](https://docs.comfy.org/specs/workflow_json_0.4.md): JSON schema for a ComfyUI workflow.

#### Node Definitions

- [Node Definition JSON](https://docs.comfy.org/specs/nodedef_json.md): JSON schema for a ComfyUI Node.
- [Node Definition JSON 1.0](https://docs.comfy.org/specs/nodedef_json_1_0.md): JSON schema for a ComfyUI Node.

## OpenAPI Specs

- [openapi-v2](/openapi-v2.yaml)
- [openapi-cloud](/openapi-cloud.yaml)
