BRIA FIBO Edit GenFill is a fast AI generative fill image editing model that fills masked regions in an image from a text prompt using BRIA’s licensed-data image editing API. Ready-to-use REST inference API for inpainting, object replacement, background repair, product image editing, creative retouching, marketing assets, and professional image editing workflows with simple integration, no coldstarts, and affordable pricing.
Bereit

$0.04pro Durchlauf·~25 / $1

A kind-faced old lady.
Bria FIBO Edit GenFill fills masked regions in an image using a natural-language prompt. Upload a source image, provide a mask, and describe what should appear in the masked area to generate a clean, context-aware edit.
Text-guided generative fill
Replace or insert content inside a masked region using a prompt.
Precise mask-based control
Limit generation to exactly the area you want to edit.
Clean editing workflow
Ideal for object replacement, scene cleanup, product retouching, and controlled inpainting.
Licensed-data Bria pipeline
Built on Bria’s commercial-friendly image editing workflow.
Simple input setup
Works with direct URLs or uploaded image assets.
| Parameter | Required | Description |
|---|---|---|
| image | Yes | Source image to edit. |
| mask_image | Yes | Mask image that marks the region to fill. |
| prompt | Yes | Text description of what to generate inside the masked area. |
Fill an empty tabletop region with a realistic ceramic vase that matches the lighting and perspective of the original photo.
| Output | Cost |
|---|---|
| Per image | $0.04 |
image, mask_image, and prompt are all required.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/bria/fibo-edit/genfill with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Fibo Edit Genfill below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bria/fibo-edit/genfill" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light"
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("bria/fibo-edit/genfill", {
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light"
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"bria/fibo-edit/genfill",
{
"image": "https://example.com/your-input.jpg",
"prompt": "A cinematic shot of a city at sunset, soft golden light"
}
)
print(output["outputs"][0]) # → URL of the generated outputFibo Edit Genfill is a Bria model for image editing, exposed as a REST API on WaveSpeedAI. BRIA FIBO Edit GenFill is a fast AI generative fill image editing model that fills masked regions in an image from a text prompt using BRIA’s licensed-data image editing API. Ready-to-use REST inference API for inpainting, object replacement, background repair, product image editing, creative retouching, marketing assets, and professional image editing workflows with simple integration, no coldstarts, and affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/bria/bria-fibo-edit-genfill.
Fibo Edit Genfill starts at $0.040 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `image`, `mask_image`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/bria/bria-fibo-edit-genfill.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (Bria). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.