GET
/v1/schemas/fal/image/fal-ai%2Fboogu-image
Accept:
Request body
12 properties · 1 required · 1 $defs| property | type | description | constraints |
|---|---|---|---|
| prompt* | string | The 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_images | integer | The number of images to generate. | 1 ≤ n ≤ 4 · default: 1 |
| sync_mode | boolean | If true, the media is returned as a data URI and the output is not available in the request history. | default: false |
| num_inference_steps | integer | The number of denoising steps to perform. | 20 ≤ n ≤ 50 · default: 30 |
| negative_prompt | string | Describes what should NOT appear in the image. Used for classifier-free guidance; leave empty to disable text negative guidance. | default: "" |
| guidance_scale | number | Controls 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_end | number | End of the timestep fraction over which CFG is applied. | 0 ≤ n ≤ 1 · default: 1 |
| image_size | ImageSize | enum | The 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_format | enum | The format of the generated image. | jpeg | png · default: "jpeg" |
| enable_safety_checker | boolean | If true, the safety checker is run on the generated images. | default: true |
| seed | integer | The same seed and the same prompt given to the same version of the model will output the same image every time. | nullable |
| cfg_range_start | number | Start of the timestep fraction over which CFG is applied. | 0 ≤ n ≤ 1 · default: 0 |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/boogu-image","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}