Get CDN proxy rules for your domain

View and manage Cloudflare proxy rules associated with your domains to troubleshoot or optimize website performance and security via CDN.

Domain Services Domains

Context

Used in the dashboard

/cdn

Query Parameters

zone string required · Example: example.com

Headers

Accept Example
Content-Type Example

Responses

200
data object required
data.count integer required · Example: 0
data.rules array<object> required · Example: [{"id":446,"fqdn":"example.com","zone_name":"example.com","proxied":false,"priority":50...
data.rules[].active boolean required · Example: true
data.rules[].created_by string required · Example: 7822
data.rules[].created_on string required · Example: 2026-02-10 00:00:00
data.rules[].description string required · Example: Auto-created for A record
data.rules[].fqdn string required · Example: example.com
data.rules[].id integer required · Example: 446
data.rules[].priority integer required · Example: 50
data.rules[].proxied boolean required · Example: false
data.rules[].updated_on string required · Example: 2026-02-10 00:00:00
data.rules[].zone_name string required · Example: example.com
requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

success boolean required · Example: true

True for successful responses.

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

GET https://cloud.hostup.se/api/cdn/proxy-rules
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/cdn/proxy-rules?zone=example.com" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "2026-02-10T00:00:00.000Z",
  "requestId": "2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba",
  "data": {
    "rules": [],
    "count": 0
  }
}