Get CDN status for your domains

Check the status and configuration of your CDN services for one or more domains. You will receive information such as whether the CDN is active, security settings, and IDs needed for further DNS management.

Headers

Accept Example
Content-Type Example

Body

required
application/json
domains array required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/cdn/batch-status
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/cdn/batch-status" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "domains": [
      "string"
    ]
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "zones": [
      {
        "name": "string",
        "error": "string",
        "exists": true,
        "enabled": true,
        "status": "string"
      }
    ]
  }
}
Request Body
{
  "domains": [
    "string"
  ]
}