> For the complete documentation index, see [llms.txt](https://docs.cloudeka.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cloudeka.ai/cloudeka-api/deka-cdn/get-cdn-health-status.md).

# Get CDN health status

Check the health status of a specific CDN instance including online status, DNS configuration, and project suspension

```json
{"openapi":"3.1.1","info":{"title":"Cloudeka AI - API Documentation","version":"1.0.0"},"tags":[{"name":"Deka CDN","description":"API endpoints for Deka CDN (base: /core/cdn)"}],"servers":[{"url":"https://ai.cloudeka.id/"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"description":"Type 'Bearer ' followed by your JWT token. Example: \"Bearer eyJhbGciOi...\"","type":"apiKey","name":"Authorization","in":"header"}},"schemas":{"ai_cdn__cdn_use_case.Health":{"type":"object","properties":{"online":{"type":"boolean"},"suspended":{"type":"boolean"}}}}},"paths":{"/core/cdn/v1/cdn/{id}/health":{"get":{"description":"Check the health status of a specific CDN instance including online status, DNS configuration, and project suspension","tags":["Deka CDN","CDN"],"summary":"Get CDN health status","parameters":[{"schema":{"type":"string"},"description":"CDN ID (UUID format)","name":"id","in":"path","required":true}],"responses":{"200":{"description":"CDN is healthy","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ai_cdn__cdn_use_case.Health"}}}},"207":{"description":"CDN has warnings (suspended or offline)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ai_cdn__cdn_use_case.Health"}}}},"400":{"description":"Invalid CDN ID format","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"type":"string"}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"type":"string"}}}}},"404":{"description":"CDN not found","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"type":"string"}}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"type":"string"}}}}}}}}}}
```
