Skip to main content

Rewards Rates - Ethereum


ETH Reward Rates

This API returns a time series of daily network-wide annualized staking reward rates, in %.

URL

https://eth-rewards.datahub.figment.io/rates

Methodology

We first compute daily rates by aggregating all rewards (on both consensus and execution layers) received by all validators within a 24h period (from 00:00 UTC to 23:59 UTC) and divide this by the aggregated balances of all validators at the beginning of this 24h period. We then annualize this rate without compounding. Daily rates are published a few hours after midnight UTC.

Request

  • figment : If true is passed, we will return the reward rate for Figment validators only. If omitted or any other value is passed, we will return the reward rate of the network as a whole.
  • decimal : Adds decimal places to the returned values. Accepts values 2, 3, 4, 5. If nothing is passed, it will default to 2.
  • avg : Returns the 7 day moving average. The only value accepted is 7d, if no value is passed, the original behavior of returning a single day average ARR is used.

Response

An array of the following objects:

  • date : timestamp for the day in format "YYYY-MM-DD"
  • value : The total annualized reward rate for that day - in %
  • staking : The piece due to consensus layer rewards (inflation) - in %
  • tips : The piece due to execution layer rewards (transaction fees) - in %
Request
Example Response
[
{
"date": "2023-05-01",
"value": "6.73",
"staking": "3.81",
"tips": "2.92"
},
{
"date": "2023-04-30",
"value": "5.57",
"staking": "3.82",
"tips": "1.76"
},
{
"date": "2023-04-29",
"value": "5.05",
"staking": "3.81",
"tips": "1.24"
},
{
"date": "2023-04-28",
"value": "5.38",
"staking": "3.81",
"tips": "1.58"
},
{
"date": "2023-04-27",
"value": "5.47",
"staking": "3.81",
"tips": "1.66"
},
{
"date": "2023-04-26",
"value": "5.58",
"staking": "3.80",
"tips": "1.77"
},
{
"date": "2023-04-25",
"value": "5.36",
"staking": "3.81",
"tips": "1.55"
},
{
"date": "2023-04-24",
"value": "5.55",
"staking": "3.81",
"tips": "1.74"
},
{
"date": "2023-04-23",
"value": "5.38",
"staking": "3.81",
"tips": "1.58"
},
{
"date": "2023-04-22",
"value": "5.30",
"staking": "3.81",
"tips": "1.49"
}
]