GET
/v1/schemas/fal/image/fal-ai%2Fflux-2-lora-gallery%2Frealism
Accept:
Request body
11 properties · 1 required · 1 $defs| property | type | description | constraints |
|---|---|---|---|
| prompt* | string | The prompt to generate a realistic image with natural lighting and authentic details. | |
| acceleration | enum | Acceleration level for image generation. 'regular' balances speed and quality. | none | regular · default: "regular" |
| sync_mode | boolean | If `True`, the media will be returned as a data URI and won't be saved in history. | default: false |
| num_images | integer | Number of images to generate | 1 ≤ n ≤ 4 · default: 1 |
| image_size | ImageSize | enum | The size of the generated image. | default: "landscape_4_3" |
| guidance_scale | number | The CFG (Classifier Free Guidance) scale. Controls how closely the model follows the prompt. | 0 ≤ n ≤ 20 · default: 2.5 |
| enable_safety_checker | boolean | Whether to enable the safety checker for the generated image. | default: true |
| seed | integer | Random seed for reproducibility. Same seed with same prompt will produce same result. | nullable |
| output_format | enum | The format of the output image | png | jpeg | webp · default: "png" |
| num_inference_steps | integer | The number of inference steps to perform. | 4 ≤ n ≤ 50 · default: 40 |
| lora_scale | number | The strength of the realism effect. | 0 ≤ n ≤ 2 · default: 1 |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/flux-2-lora-gallery/realism","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}