cURL
curl --request GET \
--url https://backend.identifai.net/api/health{
"status": [
"ok",
"degraded"
]
}Infrastructure
Check infrastructure health
This API is useful to check the infrastructure status. It does not require authentication and it is not rate limited.
The response includes a status field with one of these values:
ok: all monitored infrastructure components are fully operational.degraded: the service is reachable, but one or more components are operating with reduced functionality.
cURL
curl --request GET \
--url https://backend.identifai.net/api/health{
"status": [
"ok",
"degraded"
]
}Response
200 - application/json
The infrastructure is up and operative.