Endpoint Examples

/status

Health check endpoint

GET /status

Get the health of the service. Be sure to check the healthy attribute of the response, not just the status code. Caching not recommended.

Code Examples

{
  "method": "GET",
  "url": "https://classification.emsicloud.com/status",
  "show": true,
  "headers": [
    {
      "name": "Authorization",
      "value": "Bearer "
    }
  ],
  "queryString": []
}

Response Examples

{
  "data": {
    "message": "Service is healthy",
    "healthy": true
  }
}