Returns the current service status. Use this endpoint to verify the API is running and reachable.
This is the only endpoint that does not require authentication. No X-API-Key header is needed.
Code Examples
curl -X GET "https://api.appeeky.com/v1/health"
Response
{
"status": "ok",
"service": "app-store-api",
"timestamp": "2026-02-17T14:30:00.000Z"
}
Fields
| Field | Type | Description |
|---|
| status | string | Always "ok" when the service is up and healthy |
| service | string | Service identifier — always "app-store-api" |
| timestamp | string | Current server time in ISO 8601 format |
Use this endpoint for uptime monitoring and automated health checks. Point your monitoring tool (UptimeRobot, Pingdom, Datadog, etc.) at https://api.appeeky.com/v1/health and alert on non-200 responses or missing "status": "ok".
Errors
| Status | Code | When |
|---|
| 503 | SERVICE_UNAVAILABLE | Service is starting up or unhealthy |