---
updatedAt: 2026-05-20T06:39:48.000Z
---

Fetch the complete documentation index at: https://docs.blockdaemon.com/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Get the Health of the Protocol Rewards Processing

Returns the health of the protocol rewards processing system.

# OpenAPI definition

```json
{
  "openapi": "3.0.3",
  "info": {
    "version": "1.0.0",
    "title": "Staking Reporting API",
    "description": "### Protocols \nThe following protocols are currently supported:\n* Cardano\n* Cosmos\n* Ethereum\n* NEAR\n* Polkadot\n* Polygon \n* Solana \n",
    "contact": {
      "name": "Blockdaemon",
      "email": "support@blockdaemon.com",
      "url": "https://blockdaemon.com"
    },
    "x-logo": {
      "url": "logo.png"
    }
  },
  "servers": [
    {
      "url": "https://svc.blockdaemon.com/reporting/staking",
      "description": "Production server"
    }
  ],
  "security": [
    {
      "apiKeyAuthHeader": []
    },
    {
      "bearerAuth": []
    }
  ],
  "paths": {
    "/v2/cosmos/{network}/health": {
      "get": {
        "summary": "Get the Health of the Protocol Rewards Processing",
        "description": "Returns the health of the protocol rewards processing system.",
        "tags": [
          "Cosmos Staking Reporting"
        ],
        "operationId": "getHealthCosmos",
        "parameters": [
          {
            "in": "path",
            "name": "network",
            "required": true,
            "description": "the network to look up against",
            "schema": {
              "type": "string",
              "default": "mainnet"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HealthResponseCosmos"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseCosmos"
                }
              }
            }
          },
          "422": {
            "description": "Validation Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponseCosmos"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "apiKeyAuthHeader": {
        "type": "apiKey",
        "in": "header",
        "name": "X-API-Key",
        "description": "Unlock higher TPS - Create your own API key in the [Blockdaemon App](https://app.blockdaemon.com).\n",
        "x-default": "2go1YqUcuAr4WZ2-3WgSD3c7qpatZqQuNWhTVBldKZnTSUtw"
      },
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "Opaque",
        "description": "[Legacy Auth] Unlock higher TPS - Create your own API key in the [Blockdaemon App](https://app.blockdaemon.com).\n",
        "x-default": "2go1YqUcuAr4WZ2-3WgSD3c7qpatZqQuNWhTVBldKZnTSUtw"
      }
    },
    "schemas": {
      "ErrorResponseCosmos": {
        "properties": {
          "timestamp": {
            "description": "the timestamp of the error in ISO-8601 format",
            "type": "string"
          },
          "path": {
            "description": "the path called when the error occurred",
            "type": "string",
            "example": "/v2/cosmos/mainnet/delegator"
          },
          "status": {
            "description": "the http status code",
            "type": "number",
            "example": 400
          },
          "error": {
            "description": "a useful description of the error that occurred",
            "type": "string",
            "example": "[endTime should be in unix epoch seconds]"
          }
        }
      },
      "HealthResponseCosmos": {
        "description": "The reward response object",
        "type": "object",
        "properties": {
          "status": {
            "description": "the status",
            "type": "string",
            "enum": [
              "PROCESSING",
              "OPTIMAL",
              "DEGRADED"
            ]
          },
          "timestamp": {
            "description": "the timestamp when the status was last updated in epoch seconds",
            "type": "number",
            "example": 1704067200
          },
          "metadata": {
            "$ref": "#/components/schemas/HealthMetadataCosmos"
          }
        }
      },
      "HealthMetadataCosmos": {
        "properties": {
          "lastProcessedDate": {
            "description": "The last processed UTC date rewards are available for",
            "type": "string",
            "format": "number",
            "example": "2025-04-20"
          },
          "progress": {
            "description": "If the status is PROCESSING then this indicates the number of validators processed out of the total",
            "type": "string",
            "format": "number",
            "example": "231/545"
          },
          "minDelegation": {
            "description": "The minimum delegation amount required for us to track a delegator",
            "type": "string",
            "format": "number",
            "example": "100 ATOM"
          }
        }
      }
    }
  },
  "x-readme": {
    "samples-languages": [
      "curl",
      "go",
      "javascript",
      "python",
      "node"
    ],
    "explorer-enabled": false
  }
}
```