Skip to main content
GET
/
v1
/
eth
/
rewards
Get reward metrics of the Ethereum network.
curl --request GET \
  --url https://api.rated.network/v1/eth/rewards \
  --header 'Authorization: Bearer <token>'
{
  "previous": "<string>",
  "next": "<string>",
  "pages": 1,
  "results": [
    {
      "timeWindow": "<string>",
      "consensusLayerRewardsPercentage": 1,
      "priorityFeesPercentage": 1,
      "baselineMevPercentage": 1,
      "avgConsensusAprPercentage": 123,
      "avgExecutionAprPercentage": 123,
      "medianConsensusAprPercentage": 123,
      "medianExecutionAprPercentage": 123,
      "consensusRewardsRatio": 123,
      "executionRewardsRatio": 123,
      "avgNetworkAprPercentage": 123,
      "medianNetworkAprPercentage": 123,
      "avgConsensusAprGwei": 123,
      "avgExecutionAprGwei": 123,
      "medianConsensusAprGwei": 123,
      "medianExecutionAprGwei": 123,
      "avgNetworkAprGwei": 123,
      "medianNetworkAprGwei": 123,
      "giniCoefficient": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Rated-Network
enum<string>
default:mainnet
Available options:
mainnet,
hoodi,
holesky

Query Parameters

limit
integer
default:10

The number of results returned per page

offset
integer
default:0

The number of results to skip before starting to return

window
enum<string> | null

The time window of aggregation

Available options:
1d,
7d,
30d,
all

Response

Successful Response

previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
NetworkRewards · object[]
required