GET

/v1/schemas/fal/image/fal-ai%2Ffirered-image-edit

kind inputactivity imagehash bb7458ffextracted Jul 6, 2026version currentsource upstream spec ↗

Request body

12 properties · 2 required · 1 $defs
propertytypedescriptionconstraints
prompt*stringThe editing instruction describing what changes to make to the image. Supports both English and Chinese instructions.
image_urls*string[]The URLs of the images to edit. Supports single image editing and multi-image references (e.g., virtual try-on, style transfer from reference).
sync_modebooleanIf `True`, the media will be returned as a data URI and the output data won't be available in the request history.default: false
negative_promptstringThe negative prompt for the generation.default: ""
enable_safety_checkerbooleanIf set to true, the safety checker will be enabled.default: true
guidance_scalenumberClassifier-free guidance scale. Higher values make the model follow the prompt more closely.1 ≤ n ≤ 10 · default: 4
seedinteger The same seed and the same prompt given to the same version of the model will output the same image every time. nullable
output_formatenumThe format of the generated image.jpeg | png · default: "png"
accelerationenumThe acceleration level to use for inference speed optimization.none | regular | high · default: "regular"
num_inference_stepsintegerThe number of inference steps to perform. More steps generally produce higher quality results.2 ≤ n ≤ 50 · default: 30
num_imagesintegerThe number of images to generate.1 ≤ n ≤ 4 · default: 1
image_sizeImageSize | enumThe size of the generated image. If None, uses the input image dimensions.nullable

Validate a payload

before you spend tokens
shell
$ curl -X POST https://modelschemas.com/v1/validate \
    -d '{"provider":"fal","endpointId":"fal-ai/firered-image-edit","payload":{…}}'
→ {"valid": false, "errors": [{"path": "#", "keyword": "required", …}]}