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

Returns the staking balance and rewards earned during the most recent epoch for a delegator.

# 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/delegator/rewards/{address}": {
      "get": {
        "tags": [
          "Cardano Staking Reporting"
        ],
        "summary": "Get the Stake and Rewards of a Delegator",
        "description": "Returns the staking balance and rewards earned during the most recent epoch for a delegator.",
        "operationId": "Get Stake and Rewards of Delegator",
        "parameters": [
          {
            "name": "address",
            "in": "path",
            "description": "A single public address to check",
            "required": true,
            "schema": {
              "type": "string",
              "pattern": "^stake[a-z0-9]+$",
              "example": "stake1ux9sn560pz6skkjuhfz8s3j0a4wf9flxt00kfgfg3ngnnxsvzfw5q",
              "default": "stake1ux9sn560pz6skkjuhfz8s3j0a4wf9flxt00kfgfg3ngnnxsvzfw5q"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Reward"
                },
                "example": {
                  "rewards": [
                    {
                      "address": "stake1ux9sn560pz6skkjuhfz8s3j0a4wf9flxt00kfgfg3ngnnxsvzfw5q",
                      "currency": "ADA",
                      "metadata": {
                        "commission": 0.01,
                        "epoch": 421
                      },
                      "return": "1.950286",
                      "startingBalance": "3667.804551",
                      "timeAggregation": "epoch",
                      "timeEnd": "2023-07-04T21:44:20Z",
                      "timeStart": "2023-06-29T21:46:01Z"
                    }
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Invalid request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/error1"
                },
                "example": {
                  "code": 400,
                  "title": "parameter 'address' in path has an error: string doesn't match the regular expression '^stake[a-z0-9]+$'"
                }
              }
            }
          },
          "404": {
            "description": "Resource not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/error1"
                },
                "example": {
                  "code": 404,
                  "title": "no delegator 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": {
      "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
  }
}
```