The health endpoint provides a real-time status of the API, indicating whether the system is Healthy, Degraded, or Unhealthy based on the performance of recent requests.
Note: The service health calculation includes all Discovery endpoints but excludes Raw Data endpoints.
Security
accessToken
GET
curl -i -X GET \
https://api.modash.io/v1/health \
-H 'Authorization: Bearer <YOUR_token_HERE>'API health status:
healthyindicates that the system is operating normally.degradedindicates a moderate level of failures or slow responses in one or more endpoints.unhealthyindicates a high level of failures or significant performance issues in one or more endpoints.
Enum:"healthy""degraded""unhealthy"
Example:"healthy"
Response
{ "status": "healthy", "details": [ { … } ] }