Skip to main content
GET
/
health
GET /health
curl --request GET \
  --url https://api.inwealth.fr/health \
  --header 'Authorization: Bearer <token>'

Health Check

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

Example request

curl https://api.inwealth.fr/health

Response

{
  "status": "ok",
  "name": "Agent Conversationnel V2.0",
  "version": "2.0.0",
  "cold_start": false,
  "uptime_seconds": 794.61
}

Fields

FieldTypeDescription
statusstringAlways "ok" if the service is running
namestringApplication name
versionstringCurrent API version
cold_startbooleantrue if the container just started (< 30s uptime)
uptime_secondsnumberSeconds since last container start
If cold_start is true, the first request may take a few extra seconds as the container warms up.