Skip to main content
API Reference for bria/fibo, served by Comfy Router from Bria.

Quick start

Create a key at platform.comfy.org/profile/api-keys and export it as COMFY_API_KEY. The Python and TypeScript snippets use the Comfy SDKs (pip install comfy-sdk, npm install @comfyorg/sdk); the cURL snippet is the same call over raw HTTP. Model ID: bria/fibo Endpoint: POST https://api.comfy.org/v2/models/bria/fibo

Schema

Input

number
default:"5"
Determines how closely the generated image should adhere to the instruction.Range: 3 to 5Format: float
string[]
required
The source image to be edited. Publicly available URL or Base64-encoded. Accepted formats JPEG, JPG, PNG, WEBP. Must contain exactly one item.
string
Text-based edit instruction (e.g., “make the sky blue”, “add a cat”). Either instruction or structured_instruction must be provided.
boolean
default:"false"
If true, returns a warning for potential IP content in the instruction.
string
Optional mask image URL or Base64-encoded. Black areas will be preserved, white areas will be edited.
string
The version of the model to use. Comfy Router supplies this from the {model} path segment, so omit it there; the value Bria runs is FIBO, which the v1 route also defaults to when the field is absent. Not constrained to an enum on this half: Router writes the value in after the caller’s body has been validated.
string
A text prompt specifying concepts, styles, or objects to exclude from the edited image.
boolean
default:"true"
If true, returns 422 on instruction moderation failure.
integer
Seed for deterministic generation. If omitted, a random seed is used.
integer
default:"50"
Number of diffusion steps.Range: 20 to 50
string
A string containing the structured edit instruction in JSON format. Use this instead of instruction for precise, programmatic control.
boolean
default:"true"
If true, returns 422 on images or mask moderation failure.
boolean
default:"true"
If true, returns 422 on visual output moderation failure.
Generated from the schema Router serves at GET /v2/models/bria/fibo/openapi.json, the same document it validates a call against before the request reaches the provider.

Output

object
Error object (only present when status is ERROR)
integer
Error code.
string
Additional error details.
string
Error message.
string
Unique identifier for the request.
object
Result object (only present when status is COMPLETED)
string
URL of the generated/edited image.
string
Original prompt.
string
Refined version of the prompt.
integer
Seed used for generation.
string
The detailed JSON structured prompt.
string
URL of the generated video.
string
Current status of the request.Possible values: IN_PROGRESS, COMPLETED, ERROR, UNKNOWN

Examples

Input

Output

Before you ship

The SDKs create an Idempotency-Key and reuse it for automatic retries. For manual retries, reuse the original key. Router can hold the connection for up to 10 minutes. When a request fails, Router sends an X-Comfy-Error-Type response header explaining why. A 422 means Router rejected the input before calling the provider. Download generated assets promptly because result URLs can expire.

Headers

Authentication, idempotency, request IDs, error buckets, retry pacing, spend limits.

Using the Router API

Model discovery, validation errors, retries, and billing.

Limitations

What Router does not do today, and what to use instead.