Gensprite
Models

List models and prices

GET
/v1/models

What every kind of generation costs, and which model runs it by default.

The price a client shows must come from here and never be compiled into it. The Godot plugin ships through the Asset Library, where installed copies cannot be updated together - a hardcoded price means some of them quote a number that no longer exists.

deprecated models are included and still work; hide them from menus but keep sending the id if that is what a project was built with.

No credentials required - a price list is not secret, and the frontend shows prices before anyone signs in.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/models"
{  "models": [    {      "id": "string",      "kind": "sprite",      "tokens": 0,      "price_varies": true,      "status": "available",      "default": true    }  ]}