> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appeeky.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Check

> Service status and uptime monitoring

```
GET /v1/health
```

Returns the current service status. Use this endpoint to verify the API is running and reachable.

<Note>
  This is the **only endpoint** that does not require authentication. No `X-API-Key` header is needed.
</Note>

## Code Examples

<CodeGroup>
  ```bash cURL theme={"theme":{"light":"github-light","dark":"github-dark"}}
  curl -X GET "https://api.appeeky.com/v1/health"
  ```

  ```javascript JavaScript theme={"theme":{"light":"github-light","dark":"github-dark"}}
  const response = await fetch("https://api.appeeky.com/v1/health");

  const data = await response.json();
  console.log(data.status); // "ok"
  ```

  ```python Python theme={"theme":{"light":"github-light","dark":"github-dark"}}
  import requests

  response = requests.get("https://api.appeeky.com/v1/health")

  data = response.json()
  print(data["status"])  # "ok"
  ```
</CodeGroup>

## Response

```json theme={"theme":{"light":"github-light","dark":"github-dark"}}
{
  "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           |

<Tip>
  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"`.
</Tip>

## Errors

| Status | Code                 | When                                |
| ------ | -------------------- | ----------------------------------- |
| 503    | SERVICE\_UNAVAILABLE | Service is starting up or unhealthy |
