GET

/v1/schemas/fal/image/fal-ai%2Fboogu-image%2Fedit

kind inputactivity imagehash bb09ed66extracted Jul 6, 2026version currentsource upstream spec ↗

Request body

14 properties · 2 required · 1 $defs
propertytypedescriptionconstraints
image_url*stringURL of the input image to edit.
prompt*stringThe edit instruction describing how to transform the input image. Boogu-Image supports English and Chinese instructions.
num_imagesintegerThe number of edited images to generate.1 ≤ n ≤ 4 · default: 1
sync_modebooleanIf true, the media is returned as a data URI and the output is not available in the request history.default: false
num_inference_stepsintegerThe number of denoising steps to perform.20 ≤ n ≤ 50 · default: 30
image_guidance_scalenumberReference-image guidance strength. A value of 1.0 disables image CFG; higher values preserve the input image more strongly.1 ≤ n ≤ 8 · default: 1
negative_promptstringDescribes what should NOT appear in the edited image. Used for classifier-free guidance; leave empty to disable text negative guidance.default: ""
guidance_scalenumberControls how closely the edit follows the text instruction. Higher values stick more closely to the prompt.1 ≤ n ≤ 8 · default: 4
cfg_range_endnumberEnd of the timestep fraction over which CFG is applied.0 ≤ n ≤ 1 · default: 1
image_sizeImageSize | enumThe output size. If omitted, the edited image follows the input image aspect ratio while respecting the model's 2K native limit.nullable
output_formatenumThe format of the generated image.jpeg | png · default: "jpeg"
enable_safety_checkerbooleanIf true, the safety checker is run on the input and output images.default: true
seedintegerThe same seed, prompt, and input image given to the same version of the model will output the same image every time.nullable
cfg_range_startnumberStart of the timestep fraction over which CFG is applied.0 ≤ n ≤ 1 · default: 0

Validate a payload

before you spend tokens
shell
$ curl -X POST https://modelschemas.com/v1/validate \
    -d '{"provider":"fal","endpointId":"fal-ai/boogu-image/edit","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}