bria/image-edit-gen-fill, served by Comfy Router from Bria.
Quick start
Create a key in your Comfy workspace and export it asCOMFY_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/image-edit-gen-fill
Endpoint: POST https://api.comfy.org/v2/models/bria/image-edit-gen-fill
Schema
Input
string
required
The image to edit. Supported input types are Base64-encoded string or URL pointing to a publicly accessible image file. Accepted formats JPEG, JPG, PNG, WEBP.
string
required
The mask defining the area to fill. Base64-encoded string or URL pointing to a publicly accessible image file. White pixels (255) mark the region to generate into, black pixels (0) are preserved.
string
A text prompt specifying concepts, styles, or objects to exclude from the generated area.
boolean
Controls whether partially transparent areas from the input image are retained in the output.
string
required
Text description of what to generate inside the masked area.
boolean
When enabled, applies content moderation to the prompt. Returns 422 if the prompt fails moderation.
boolean
When true (default), the prompt is automatically adjusted for optimal generation results.
integer
Seed for deterministic generation. If omitted, a random seed is used.
boolean
When false (default), the request is processed asynchronously. When true, the API holds the connection open until complete.
boolean
When enabled, applies content moderation to input visual. Returns 422 if the image fails moderation.
boolean
When enabled, applies content moderation to result visual. Returns 422 if the output fails moderation.
GET /v2/models/bria/image-edit-gen-fill/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, UNKNOWNExamples
Input
Output
Before you ship
The SDKs create anIdempotency-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.