v1

latestOpenAPI 3.0.0MIT License2026-07-17365.1 KB
public

health check endpoint

The health check endpoint will return a status of 200 if the api is up and ready to recieve connections. It will tell the uptime, and total requests served since last restart. It also has a field for version which corresponds to the versioned release from the github repo.

get/health

Response

Default Health check response

Example response

{
  "data": {
    "uptime": "00:00:39:45",
    "version": "0.4.10",
    "requests": 129522
  }
}