Pricing
Retrieve current pricing for generation models and legacy render pricing fields.
GET
/api/v1/pricingOverview
Returns the current pricing schedule with two sections: models and editor. All monetary values include microdollars, USD, and credit equivalents.
Current wonda edit operations render locally in the CLI and do not create server render credit holds. The editor field remains in the response for compatibility with older clients and legacy render accounting.
models
Per-model pricing. Each model has a pricing array with one entry per variant, such as resolution or quality tier.
Unit values: per_second, per_image, per_character, per_render, per_generation, per_million_input_tokens, variable
{
"models": [
{
"key": "nano-banana-2",
"label": "Nano Banana 2",
"description": "General-purpose image generation.",
"stepType": "image",
"pricing": [
{
"unit": "per_image",
"variant": "1K",
"unitPriceMicrodollars": 4000,
"unitPriceUsd": "$0.004000",
"credits": 4
}
]
}
]
}editor
Legacy editor pricing entry retained in the API response.
{
"editor": {
"type": "editor_render",
"label": "Video/Image/Audio Editor Render",
"pricing": {
"unit": "per_render",
"unitPriceMicrodollars": 50000,
"unitPriceUsd": "$0.050000",
"credits": 50
}
}
}