GET
/v1/schemas/fal/image/fal-ai%2Fcontrol-light
Accept:
Request body
9 properties · 1 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| image_url* | string | URL of the image to enhance. | |
| enable_safety_checker | boolean | Enable the safety checker for the output image. | default: true |
| num_inference_steps | integer | Number of denoising steps. | 4 ≤ n ≤ 8 · default: 4 |
| sync_mode | boolean | If True, return images as data URIs instead of CDN URLs. | default: false |
| output_format | enum | Output image format. | jpeg | png | webp · default: "png" |
| lighting_level | number | Strength of the lighting enhancement (LoRA adapter scale). 0.0 leaves the image essentially untouched; 1.0 applies the strongest exposure lift the LoRA was trained for. | 0 ≤ n ≤ 1 · default: 0.75 |
| seed | integer | Random seed for reproducible generation. If not set, a random seed is used. | nullable |
| guidance_scale | number | Classifier-free guidance scale. | 0 ≤ n ≤ 20 · default: 1 |
| prompt | string | Restoration prompt fed to FLUX.2 [klein]. | default: "Enhance this low-light image by… |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/control-light","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}