---
title: Liveness probe
description: Returns 200 with server time and region.
api_method: GET
api_path: "/v1/health"
canonical_url: https://wiblo.app/docs/developers/api/meta/get-health
last_updated: 2026-07-28T17:31:44+02:00
md_url: https://wiblo.app/docs/developers/api/meta/get-health.md
---

# Liveness probe

`GET /v1/health`

Returns 200 with server time and region. Public, no auth. Per-IP rate-limited at 30/min so a single client can't saturate the instance pool. Sets X-Request-Id on every response.

## Request

**curl**

```bash
curl https://api.wiblo.app/v1/health
```

**TypeScript**

```ts
import { createSdk, getHealth } from "@workspace/sdk"

const sdk = createSdk({ baseUrl: "https://api.wiblo.app" })

const { data, error } = await getHealth({
  client: sdk,
})
```

## Responses

**`200`** — Service is healthy. Returns `HealthResponse`.

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `ok` | `true` | Yes |  |
| `time` | `string` | Yes |  |
| `region` | `string` | Yes |  |

**`429`** — Rate limit exceeded. The body's `error.code` is `RATE_LIMITED` and `error.details.retry_after` is the same number of seconds as the `Retry-After` header. Returns `ApiErrorEnvelope`.
