List all your active hosting accounts

Retrieve a list of all your active hosting accounts. This is useful for an overview of your services or to prepare for actions on a specific account. The API returns a `requestId` for tracking operations.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
HEAD https://cloud.hostup.se/api/hosting-accounts
For AI assistants
cURL
curl -X HEAD "https://cloud.hostup.se/api/hosting-accounts" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "hosting_accounts": [
      "string"
    ],
    "pagination": "string"
  }
}