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

# tRPC Healthcheck API

> Public healthcheck procedures for API liveness and service readiness

The healthcheck namespace is available on the tRPC base endpoint:

* Base endpoint: `POST /v1/trpc`
* Namespace: `healthcheck.*`
* Auth: public

## Procedures

* `healthcheck.ping`
  * Purpose: fast liveness check
  * Rate tier: `Tier3`
* `healthcheck.status`
  * Purpose: aggregated service status (`api`, `database`, `legacy_database`, `redis`)
  * Rate tier: `Tier2`

## Example Calls

```bash theme={null}
curl --request POST \
  --url 'https://api.glider.fi/v1/trpc/healthcheck.ping' \
  --header 'content-type: application/json' \
  --data '{"json":null}'
```

```bash theme={null}
curl --request POST \
  --url 'https://api.glider.fi/v1/trpc/healthcheck.status' \
  --header 'content-type: application/json' \
  --data '{"json":null}'
```
