Overview
For tax reporting, you need per-epoch reward data to calculate the fiat value of rewards at the time they were received. This requires iterating through epochs using the Custom Range Rewards approach.API Endpoint: This guide uses
/api/v2/ethereum/validators/rewards-list for per-epoch reward data required for tax calculations.Why Per-Epoch or Per-Day Data is Required
Most tax jurisdictions require you to report the fiat value of staking rewards at the time they were received. This means you need:- Reward amount for each epoch or day
- Historical ETH-USD price at that time
- Calculation:
fiat_value = reward_eth × price_at_time
The
all_time or rolling period windows from Rewards Aggregated only provide a total sum—they cannot be used for tax calculations because you need per-epoch data to match with historical prices.Obtaining Historical ETH Prices
You’ll need historical ETH-USD prices for each day. Common sources include:Common Tax Year Time Zone Offsets
For tax purposes, use your local time zone’s standard offset (non-daylight-saving) or consult with your tax authority about which time zone to use. Some jurisdictions may require UTC.
Related Resources
- Introduction — Overview and endpoint comparison
- Custom Range Rewards — Complete epoch iteration code
- Epoch & Time Zone Conversion — Detailed epoch/timestamp math
- Pagination Guide

