List services, get a single service, and check your balance
Use GET /services to list everything you have provisioned, GET /services/{id} for one service, GET /account for your credit balance, and GET /account/transactions for the ledger.
These read endpoints are how you build a dashboard, reconcile billing, and monitor your prepaid balance.
List all your services
The response is a data array of service summaries (id, category, label, status, plan code, region). Large lists are paginated — follow the pagination fields in the response.
Get a single service
A single service includes its full detail: current status, connection info (IP/port or domain), specs, plan code, region, and next renewal date.
Check your balance
Read the transaction ledger
Transactions cover top-ups (credit) and service charges/renewals (debit), each with an amount, timestamp and the related service id — perfect for reconciling against what you charged your own customers.
Automate a low-balance alert
Poll GET /account on a schedule (well within 240 req/min) and alert yourself when credits drops below a threshold, so customer services never lapse for lack of funds.