Get a Stream of Rewards

Network

Type

Start Time

End Time

Epoch

Addresses

Period

Aggregate

Denomination

Accept

Example API Request

curl --request POST \
     --url https://svc.blockdaemon.com/reporting/staking/v2/solana/mainnet/validator/rewards \
     --header 'X-API-Key: ••••' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "startTime": 1709251200,
  "endTime": 1711929600,
  "epoch": 755,
  "addresses": [ "FQwewNXahV7MiZcLpY6p1xhUs2acVGQ3U5Xxc7FzV571" ],
  "period": "monthly",
  "aggregate": false,
  "denomination": "lamports"
}
'```

## Status Codes
- **200**: OK
- **400**: Bad Request
- **422**: Validation Error

---