Avalanche · Example Payload

Health Check

Check the health status of the Glacier API service

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Health Check is an example object payload from Avalanche, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionoperationrequestresponse

Example Payload

Raw ↑
{
  "description": "Check the health status of the Glacier API service",
  "operation": "GET /v1/health-check",
  "request": {
    "path": "/v1/health-check"
  },
  "response": {
    "status": "ok",
    "info": {
      "database": {
        "status": "up"
      },
      "redis": {
        "status": "up"
      }
    },
    "error": {},
    "details": {
      "database": {
        "status": "up"
      },
      "redis": {
        "status": "up"
      }
    }
  }
}