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 |
|---|---|---|---|---|---|
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
POSTSeedream 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.
Video models are on the roadmap and will appear in this list with media_type: "video".