Get a list of your domains and DNS zones

View all domains and DNS zones associated with your account. The endpoint also returns IDs that may be needed for subsequent API calls to manage specific resources or retrieve more detailed information.

Query Parameters

limit string required
page string

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/client-domains
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/client-domains?limit=string" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "domains": [
      "string"
    ],
    "dnsZones": [
      "string"
    ],
    "dnsOnlyZones": [
      "string"
    ],
    "pagination": {
      "currentPage": 0,
      "perPage": 0,
      "totalPages": 0,
      "totalRecords": 0
    },
    "success": true
  }
}