Athena

API root and route listing

Returns health status and a list of all available routes with methods and summaries (PostgREST-style).

GET
/

Response Body

application/json

application/json

curl -X GET "https://athena-cluster.com"
{
  "message": "athena is online",
  "version": "string",
  "athena_api": "online",
  "athena_deadpool": "online",
  "athena_scylladb": "online",
  "cargo_toml_version": "string",
  "routes": [
    {
      "path": "/gateway/data",
      "methods": [
        "POST"
      ],
      "summary": "string"
    }
  ]
}
{
  "status": "error",
  "message": "string",
  "error": "string"
}