Models
The live catalog with credit prices, allowed aspect ratios and reference-image limits.
GET /v1/models returns the live catalog with prices and option lists. The table below is rendered from the same source, so it is always current.
| Model id | Type | Credits | Aspect ratios | Reference images | Typical time |
|---|---|---|---|---|---|
seedance-2Seedance 2.0 | video | 480p 32 credits / second · 720p 72 credits / second | 16:9 4:3 1:1 3:4 9:16 21:9 | up to 2 | Not yet measured |
seedance-2-fastSeedance 2.0 Fast | video | 480p 27 credits / second · 720p 56 credits / second | 16:9 4:3 1:1 3:4 9:16 21:9 | up to 2 | Not yet measured |
seedance-2-miniSeedance 2.0 Mini | video | 480p 16 credits / second · 720p 35 credits / second | 16:9 4:3 1:1 3:4 9:16 21:9 | up to 2 | Not yet measured |
veo-3-1Veo 3.1 | video | fast 200 credits / generation · quality 550 credits / generation | 16:9 9:16 | up to 3 | Not yet measured |
seedream-5Seedream 5.0 Lite | image | 6 credits / image | 1:1 4:3 3:4 16:9 9:16 2:3 3:2 21:9 | up to 14 | Not yet measured |
nano-bananaNano Banana | image | 6 credits / image | auto 1:1 2:3 3:2 3:4 4:3 4:5 5:4 9:16 16:9 21:9 | up to 14 | 10–15 s |
nano-banana-proNano Banana Pro | image | 1K 14 · 2K 14 · 4K 28 | auto 1:1 2:3 3:2 3:4 4:3 4:5 5:4 9:16 16:9 21:9 | up to 14 | 10–20 s |
nano-banana-2Nano Banana 2 | image | 1K 10 · 2K 14 · 4K 21 | auto 1:1 2:3 3:2 3:4 4:3 4:5 5:4 9:16 16:9 21:9 1:4 4:1 1:8 8:1 | up to 14 | 10–20 s |
nano-banana-2-liteNano Banana 2 Lite | image | 6 credits / image | auto 1:1 2:3 3:2 3:4 4:3 4:5 5:4 9:16 16:9 21:9 1:4 4:1 1:8 8:1 | up to 14 | 8–15 s |
Model references
POSTSeedance 2.0Text-to-video, first-frame animation and first/last-frame transitions, with optional generated audio.5s example: 360 creditsPOSTSeedance 2.0 FastText-to-video, first-frame animation and first/last-frame transitions, with optional generated audio.5s example: 280 creditsPOSTSeedance 2.0 MiniText-to-video, first-frame animation and first/last-frame transitions, with optional generated audio.5s example: 175 creditsPOSTVeo 3.1Veo 3.1 Fast and Quality with native audio, text, frame and Fast reference-image generation.8s example: 200 creditsPOSTSeedream 5.0 LiteText-to-image and reference-image editing with 2K, 3K and 4K output.6 creditsPOSTNano BananaFast text-to-image and image editing with strong character consistency.6 creditsPOSTNano Banana ProNative 2K with 4K output, precise typography and composition control.From 14 creditsPOSTNano Banana 2Multi-subject consistency and 1K / 2K / 4K output with extreme aspect ratios.From 10 creditsPOSTNano Banana 2 LiteBudget Nano Banana 2 at 1K.6 credits
Prices are credits per generated image and match the web generator. Resolution-priced models default to the cheapest tier when resolution is omitted.
curl https://flux1.ai/api/v1/models -H "Authorization: Bearer $FLUX1_API_KEY"{
"data": [
{
"id": "nano-banana-2",
"label": "Nano Banana 2",
"media_type": "image",
"parameters": ["prompt", "images", "aspect_ratio", "resolution"],
"pricing": { "type": "resolution", "credits": { "1K": 10, "2K": 14, "4K": 21 } },
"constraints": { "aspect_ratios": ["auto", "1:1", …], "resolutions": ["1K", "2K", "4K"], "max_images": 14 },
"estimated_seconds": [10, 20]
},
…
]
}Reading a model entry
parameterslists the main request fields.parameter_detailsdescribes every accepted field with its type, default, allowed values and limits.example_inputprovides a starting point; spread it alongsidemodelin the request body.- Seedream 5.0 Lite rejects unknown fields. Its output size is controlled by
quality, notresolution. Nano Banana models ignore unknown fields. pricing.typeisfixed(one price) orresolution(a price perresolutionvalue).constraintscarries allowedaspect_ratios,resolutionsorqualities,output_formatsandmax_imagesas applicable. Invalid options are rejected with400 invalid_requestbefore any credits are charged.max_imageslimits reference images; one output is generated per request.estimated_secondsis a typical range, not a guarantee;nullmeans no measured range is published yet. Poll rather than sleep for a fixed time.
Seedance 2.0, Fast, Mini and Veo 3.1 appear with media_type: "video". Seedance pricing is per second at the selected resolution; Veo pricing is per generation at the selected Fast/Quality mode. See the model pages for exact supported durations and parameters.