---
updatedAt: 2026-05-20T06:39:31.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 Historical Stake and Rewards of a Pool

Returns the historical stake and rewards allocated to a given staking pool.

# 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": {
    "/v1/cardano/mainnet/pool/history/{address}": {
      "post": {
        "tags": [
          "Cardano Staking Reporting"
        ],
        "summary": "Get the Historical Stake and Rewards of a Pool",
        "description": "Returns the historical stake and rewards allocated to a given staking pool.",
        "operationId": "Get Historical Stake and Rewards of Pool",
        "parameters": [
          {
            "name": "address",
            "in": "path",
            "description": "A single public address to check",
            "required": true,
            "schema": {
              "type": "string",
              "pattern": "^pool[a-z0-9]+$",
              "example": "pool1af7dmzgcyp9kc5lyrtrtpsce58l6j5cjvc8wavkwmzlr53ym50v",
              "default": "pool1af7dmzgcyp9kc5lyrtrtpsce58l6j5cjvc8wavkwmzlr53ym50v"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SingleHistoricRewardsQuery"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Rewards"
                },
                "example": {
                  "rewards": [
                    {
                      "address": "pool1af7dmzgcyp9kc5lyrtrtpsce58l6j5cjvc8wavkwmzlr53ym50v",
                      "currency": "ADA",
                      "metadata": {
                        "epoch": 0
                      },
                      "return": "708.133272",
                      "startingBalance": "55725.609532",
                      "timeAggregation": "monthly",
                      "timeEnd": "2023-05-31T23:59:59Z",
                      "timeStart": "2023-05-01T00:00:00Z"
                    },
                    {
                      "address": "pool1af7dmzgcyp9kc5lyrtrtpsce58l6j5cjvc8wavkwmzlr53ym50v",
                      "currency": "ADA",
                      "metadata": {
                        "epoch": 0
                      },
                      "return": "1603.075336",
                      "startingBalance": "52324.810889",
                      "timeAggregation": "monthly",
                      "timeEnd": "2023-04-30T23:59:59Z",
                      "timeStart": "2023-04-01T00:00:00Z"
                    },
                    {
                      "address": "pool1af7dmzgcyp9kc5lyrtrtpsce58l6j5cjvc8wavkwmzlr53ym50v",
                      "currency": "ADA",
                      "metadata": {
                        "epoch": 0
                      },
                      "return": "1329.577125",
                      "startingBalance": "36217.090084",
                      "timeAggregation": "monthly",
                      "timeEnd": "2023-03-31T23:59:59Z",
                      "timeStart": "2023-03-01T00:00:00Z"
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/error1"
                },
                "example": {
                  "code": 400,
                  "title": "from time is further than to time"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/error1"
                },
                "example": {
                  "code": 404,
                  "title": "no pool rewards found"
                }
              }
            }
          }
        }
      }
    }
  },
  "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": {
      "SingleHistoricRewardsQuery": {
        "required": [
          "fromTime",
          "toTime",
          "timeUnit"
        ],
        "type": "object",
        "properties": {
          "fromTime": {
            "type": "integer",
            "format": "int64",
            "description": "The Unix timestamp in seconds from which you wish to retrieve rewards.",
            "example": 1577836800,
            "default": 1577836800
          },
          "toTime": {
            "type": "integer",
            "format": "int64",
            "description": "The Unix timestamp in seconds until which rewards are retrieved.",
            "example": 1685491200,
            "default": 1685491200
          },
          "timeUnit": {
            "$ref": "#/components/schemas/TimeUnit1"
          }
        }
      },
      "TimeUnit1": {
        "type": "string",
        "description": "Represents how the rewards are aggregated. Must be one of `epoch`, `daily`, `weekly`, or `monthly`.",
        "enum": [
          "epoch",
          "daily",
          "weekly",
          "monthly"
        ]
      },
      "Rewards": {
        "type": "object",
        "required": [
          "rewards"
        ],
        "properties": {
          "rewards": {
            "type": "array",
            "description": "A list of rewards.",
            "items": {
              "$ref": "#/components/schemas/Reward"
            }
          }
        }
      },
      "Reward": {
        "required": [
          "address",
          "currency",
          "metadata",
          "return",
          "startingBalance",
          "timeAggregation",
          "timeEnd",
          "timeStart"
        ],
        "type": "object",
        "properties": {
          "address": {
            "type": "string",
            "description": "The user-defined address."
          },
          "currency": {
            "type": "string",
            "description": "The cryptocurrency protocol the request relates to.",
            "example": "ADA"
          },
          "metadata": {
            "$ref": "#/components/schemas/Metadata2"
          },
          "return": {
            "type": "string",
            "description": "The sum of the rewards for the previous UTC day.",
            "example": "500.000000"
          },
          "startingBalance": {
            "type": "string",
            "description": "The staked amount at the beginning of the previous UTC day (at the timeStart).",
            "example": "5004.058667"
          },
          "timeAggregation": {
            "type": "string",
            "example": "weekly",
            "description": "The agregation period. Either one of `epoch`, `daily`, `weekly`, or `monthly`."
          },
          "timeEnd": {
            "type": "string",
            "description": "The timestamp, in UTC, that marks the end of the period covered.",
            "example": "2022-07-31T23:59:59.000Z"
          },
          "timeStart": {
            "type": "string",
            "description": "The timestamp, in UTC, that marks the start of the period covered.",
            "example": "2022-07-01T00:00:00.000Z"
          }
        }
      },
      "Metadata2": {
        "required": [
          "epoch"
        ],
        "type": "object",
        "description": "The protocol specific data.",
        "properties": {
          "commission": {
            "type": "number",
            "format": "double",
            "description": "The commission rate.",
            "example": 0.01
          },
          "epoch": {
            "type": "integer",
            "format": "int",
            "description": "The epoch number the rewards were earned in.",
            "example": 348
          }
        }
      },
      "error1": {
        "type": "object",
        "properties": {
          "code": {
            "type": "integer",
            "description": "The numeric error code.",
            "example": 16384
          },
          "title": {
            "type": "string",
            "description": "The error description.",
            "example": "Invalid Address"
          }
        }
      }
    }
  },
  "x-readme": {
    "samples-languages": [
      "curl",
      "go",
      "javascript",
      "python",
      "node"
    ],
    "explorer-enabled": false
  }
}
```