GET
/
v1
/
avalanche
/
network
/
rewards
curl --request GET \
  --url https://api.rated.network/v1/avalanche/network/rewards
{
  "next": "https://api.rated.network//v1/avalanche/network/rewards?limit=10&offset=30",
  "pages": 10,
  "previous": "https://api.rated.network//v1/avalanche/network/rewards?limit=10&offset=10",
  "results": [
    [
      {
        "day": "2024-11-25",
        "totalActiveValidators": 1500,
        "totalDelegatorRewards": "30000.0",
        "totalPotentialDelegatorRewards": "30000.0",
        "totalPotentialValidatorFeeRewards": "15000.0",
        "totalPotentialValidatorRewards": "30000.0",
        "totalValidatorFeeRewards": "15000.0",
        "totalValidatorRewards": "30000.0"
      }
    ]
  ]
}

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

toDate
string | null

End date

Example:

"2023-12-31"

fromDate
string | null

Start date

Example:

"2023-01-01"

Response

200
application/json
Successful Response
previous
string | null
required
next
string | null
required
pages
integer
required
Required range: x >= 0
results
object[]
required