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

# GET /health

> Check API availability and status

# Health Check

Verify that the iNwealth API is running and responsive. No authentication required.

## Example request

```bash theme={null}
curl https://api.inwealth.fr/health
```

## Response

```json theme={null}
{
  "status": "healthy",
  "timestamp": "2026-03-08T14:30:00+00:00"
}
```

## Fields

| Field       | Type     | Description                           |
| ----------- | -------- | ------------------------------------- |
| `status`    | `string` | `"healthy"` if the service is running |
| `timestamp` | `string` | Current server time (ISO 8601)        |

<Info>
  The first request after an idle period may take a few extra seconds as the container warms up. Schedule periodic health checks to keep the container warm.
</Info>
