200+
PoPs worldwide
Edge nodes on every continent. Your content sits close to every user.
10Tb
DDoS mitigation
Always-on protection. No manual toggle, no setup, no surprise bills.
150ms
Global cache purge
Invalidate a single file or your entire zone. Propagates instantly.
99.99%
Uptime SLA
Financially-backed SLA with automated credits for any downtime.
// Edge Caching

Smart caching that
learns your patterns.

cdnpw's cache layer doesn't just follow Cache-Control headers — it analyzes request frequency, geographic demand, and TTL efficiency to pre-warm the right content at the right nodes before users even ask for it.

Cache hit rates by region
US East
97%
EU West
94%
Asia Pac
91%
LATAM
88%
Africa
85%
// API & Integrations

Code-first CDN
management.

Every action in the cdnpw dashboard is available over a fully RESTful API. Provision zones, rotate API tokens, configure rules, and trigger purges — all from your CI/CD pipeline.

// Purge via REST API
curl -X POST \
  https://api.cdnpw.io/v1/zones/z_a8f3/purge \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "files",
    "files": ["/assets/app.js", "/css/*"]
  }'

// Response
{
  "status": "ok",
  "purged": 2,
  "propagated_in_ms": 143
}