Get your billing account summary

Get an overview of your billing account, including any credit and your contact details. It also returns a unique request ID that may be needed to follow up on other billing-related actions.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/billing/account-summary
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/billing/account-summary" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "credit": "string",
    "email": "string",
    "name": "string",
    "country": "string"
  }
}