GET

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

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

Request body

12 properties · 1 required · 1 $defs
propertytypedescriptionconstraints
prompt*stringThe instruction describing the image to generate. Boogu-Image is bilingual — English and Chinese instructions are both supported. Detailed, descriptive prompts produce the best results.
num_imagesintegerThe number of 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
negative_promptstringDescribes what should NOT appear in the image. Used for classifier-free guidance; leave empty to disable text negative guidance.default: ""
guidance_scalenumberControls how closely generation follows the text instruction. Higher values stick more closely to the prompt. A value of 1.0 disables text classifier-free guidance.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 size of the generated image. The model's maximum native resolution is 2K; larger requests are clamped. Dimensions are aligned to multiples of 16.default: "square_hd"
output_formatenumThe format of the generated image.jpeg | png · default: "jpeg"
enable_safety_checkerbooleanIf true, the safety checker is run on the generated images.default: true
seedintegerThe same seed and the same prompt 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","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}