List the catalog, plans and regions
Read the available product categories, plans and pricing with GET /catalog, drill into a specific plan code, and list deployment regions with GET /regions.
Before you can provision anything, you need a valid plan code and (where relevant) a region. The catalog is your source of truth for what you can sell and what it costs in credits.
List everything
This returns all four categories (vps, game, bot, app), each with its list of plans.
Filter by category
A plan entry describes the resources and the recurring cost in credits. Example shape:
List regions
Use a region code from this list (for example the EU and Singapore locations) when you provision. Not every plan is available in every region — the plan entry lists its supported regions.
Cache the catalog
The catalog changes rarely. Cache it for a few minutes rather than fetching it on every page render, so you stay well under the 240 req/min limit.
Never guess a code
Always provision with a code you read back from the catalog. Hard-coded or out-of-date codes cause 404 / 422 errors when plans are renamed or retired.