LLM Gateway

Health check

Health check endpoint.

GET
/

Query Parameters

skip?string

Comma-separated list of health checks to skip. Options: redis, database

Response Body

curl -X GET "https://api.llmgateway.io/?skip=redis%2Cdatabase"
{
  "message": "string",
  "version": "string",
  "health": {
    "status": "string",
    "redis": {
      "connected": true,
      "error": "string"
    },
    "database": {
      "connected": true,
      "error": "string"
    }
  }
}
{
  "message": "string",
  "version": "string",
  "health": {
    "status": "string",
    "redis": {
      "connected": true,
      "error": "string"
    },
    "database": {
      "connected": true,
      "error": "string"
    }
  }
}

How is this guide?

Last updated on