bria/structured-instruction with the Comfy Router API. Bria provides the model; Router gives it the shared authentication and request route below.
Quick start
Create a key at platform.comfy.org/profile/api-keys 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/structured-instruction
Endpoint: POST https://api.comfy.org/v2/models/bria/structured-instruction
Schema
Input
string[]
required
The source image to be edited. Publicly available URL or Base64-encoded. Must contain exactly one item.
string
required
Required. Text-based edit instruction (e.g., “make the sky blue”, “add a cat”).
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.
boolean
default:"true"
If true, returns 422 on instruction moderation failure.
integer
Seed for deterministic generation. If omitted, a random seed is used.
boolean
default:"true"
If true, returns 422 on images or mask moderation failure.
GET /v2/models/bria/structured-instruction/openapi.json, the same document it validates a call against before the request reaches the provider.
Output
Router does not publish an output schema for this model.Examples
Input
Before you ship
Save oneIdempotency-Key for each call and reuse it for retries. Router can hold the connection for up to 10 minutes. The SDKs handle authentication; raw HTTP clients send the headers themselves.
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.