GET
/v1/schemas/fal/image/fal-ai%2Fbitdance
Accept:
Request body
9 properties · 1 required · 1 $defs| property | type | description | constraints |
|---|---|---|---|
| prompt* | string | Text prompt for image generation. | |
| image_size | ImageSize | enum | The size of the generated image. Will be snapped to the nearest supported resolution. | default: "square_hd" |
| seed | integer | Random seed for reproducibility. The same seed and prompt will produce the same image. | nullable |
| output_format | enum | The format of the generated image. | jpeg | png · default: "jpeg" |
| num_inference_steps | integer | Number of diffusion sampling steps per decoding step. Higher values (e.g. 50) improve quality at the cost of speed. | 10 ≤ n ≤ 100 · default: 25 |
| enable_safety_checker | boolean | If set to true, the safety checker will be enabled. | default: true |
| num_images | integer | Number of images to generate. | 1 ≤ n ≤ 4 · default: 1 |
| guidance_scale | number | Classifier-free guidance scale. Higher values follow the prompt more closely. | 1 ≤ n ≤ 15 · default: 7.5 |
| sync_mode | boolean | If true, the media will be returned as a data URI. | default: false |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/bitdance","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}