Avalanche · Schema

ChainStatus

Status of chain nodes. Chain nodes can become temporarily `UNAVAILABLE` for several reasons, such as validator stake falling below threshold. If chain nodes are `UNAVAILABLE`, requests that rely on data from the chain nodes may return 503 errors.

BlockchainWeb3AvalancheNFTDeFiCross-Chain
View JSON Schema on GitHub

JSON Schema

ChainStatus.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/ChainStatus.json",
  "title": "ChainStatus",
  "type": "string",
  "description": "Status of chain nodes. Chain nodes can become temporarily `UNAVAILABLE` for several reasons, such as validator stake falling below threshold. If chain nodes are `UNAVAILABLE`, requests that rely on data from the chain nodes may return 503 errors.",
  "enum": [
    "OK",
    "UNAVAILABLE"
  ]
}