GET
/v1/schemas/fal/image/fal-ai%2Fbria%2Freimagine
Accept:
Request body
8 properties · 1 required · 0 $defs| property | type | description | constraints |
|---|---|---|---|
| prompt* | string | The prompt you would like to use to generate images. | |
| structure_image_url | string | The URL of the structure reference image. Use "" to leave empty. Accepted formats are jpeg, jpg, png, webp. | default: "" |
| num_inference_steps | integer | The number of iterations the model goes through to refine the generated image. This parameter is optional. | 20 ≤ n ≤ 50 · default: 30 |
| seed | integer | The same seed and the same prompt given to the same version of the model will output the same image every time. | 0 ≤ n ≤ 2147483647 · nullable |
| fast | boolean | Whether to use the fast model | default: true |
| sync_mode | boolean | If `True`, the media will be returned as a data URI and the output data won't be available in the request history. | default: false |
| num_results | integer | How many images you would like to generate. When using any Guidance Method, Value is set to 1. | 1 ≤ n ≤ 4 · default: 1 |
| structure_ref_influence | number | The influence of the structure reference on the generated image. Must be between 0 and 1. | 0 ≤ n ≤ 1 · default: 0.75 |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"fal-ai/bria/reimagine","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}