# Get CI system health and dependency status **GET /system/health** Unauthenticated. Returns overall system status and per-dependency health. Used by monitoring and uptime checks. ## Servers - Production: https://sampleplatform.ccextractor.org/api/v1 (Production) ## Parameters ## Responses ### 200 System healthy or degraded #### Body: application/json (object) - **status** (string) - **checked_at** (string(date-time)) - **dependencies** (array[object]) ### 503 System is down #### Body: application/json (object) - **status** (string) - **checked_at** (string(date-time)) - **dependencies** (array[object]) ### 429 Too many requests. Retry after the indicated number of seconds. #### Headers - **Retry-After** (integer) Seconds to wait before retrying - **X-RateLimit-Limit** () Maximum requests allowed in the current window - **X-RateLimit-Remaining** () Requests remaining in the current window - **X-RateLimit-Reset** () Unix timestamp when the rate limit window resets #### Body: application/json (object) - **code** (string) Machine-readable error code (snake_case) - **message** (string) Human-readable error summary - **details** (object) Structured context for the error. Always an object, never null. Empty object {} when no additional detail is available. ### default Unexpected server error #### Body: application/json (object) - **code** (string) Machine-readable error code (snake_case) - **message** (string) Human-readable error summary - **details** (object) Structured context for the error. Always an object, never null. Empty object {} when no additional detail is available. [Powered by Bump.sh](https://bump.sh)