GET
/v1/schemas/fal/image/bria%2Ffibo%2Fgenerate
Accept:
Request body
9 properties · 0 required · 5 $defs| property | type | description | constraints |
|---|---|---|---|
| structured_prompt | TailoredStructuredPrompt | Structured prompt for tailored-model requests, with the extra custom fields. | nullable |
| seed | integer | Random seed for reproducibility. | default: 5555 |
| image_url | string | Reference image (file or URL). | nullable |
| aspect_ratio | enum | Aspect ratio. Options: 1:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9 | 1:1 | 2:3 | 3:2 | 3:4 | 4:3 | 4:5 · +3 more · default: "1:1" |
| resolution | enum | Output image resolution | 1MP | 4MP · default: "1MP" |
| prompt | string | Prompt for image generation. | nullable |
| sync_mode | boolean | If true, returns the image directly in the response (increases latency). | default: false |
| negative_prompt | string | Negative prompt for image generation. | default: "" |
| steps_num | integer | Number of inference steps. | 20 ≤ n ≤ 50 · default: 50 |
Validate a payload
before you spend tokensshell
$ curl -X POST https://modelschemas.com/v1/validate \
-d '{"provider":"fal","endpointId":"bria/fibo/generate","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}