Provision a service (VPS, game, bot and app examples)
Create services with POST /services for every category — full curl examples for a VPS, a Minecraft game server, a Discord bot and an app, plus how to poll until it is ready.
You provision any service type with a single endpoint: POST /services. Pass the category, a plan code from the catalog, a region where required, and category-specific options. Provisioning charges credits for the current cycle.
Provisioning is asynchronous
A successful create usually returns 202 Accepted with the new service id and a provisioning / installing status. Poll GET /services/{id} or listen for the service.ready webhook before handing credentials to your customer.
VPS
Game server (Minecraft)
Discord bot
App hosting
Poll until ready
402 insufficient_credits
If provisioning fails with a 402, your prepaid balance is too low for this plan. Top up in the billing portal and retry — no service is created and nothing is charged.
Use a unique label
Set a label you can map back to your own customer/order id. It makes services easy to find in GET /services and in the panel, and helps reconcile the GET /account/transactions ledger.