AVS
AVS Rewards
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
AVS
AVS Rewards
Fetches paginated rewards history of an AVS along with metadata and global statistics.
GET
/
eigenlayer
/
avs-rewards
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-rewards
{
"data": [
{
"type": "<string>",
"avs": "<string>",
"submitter": "<string>",
"tokenHopper": "<string>",
"submissionNonce": "<string>",
"rewardsSubmissionHash": "<string>",
"strategies": "<string>",
"token": "<string>",
"amount": "<string>",
"startTimestamp": "2023-11-07T05:31:56Z",
"duration": "<string>",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalRewards": 123,
"totalAmount": 123,
"uniqueTokens": 123
}
}
}
Query Parameters
The page number for pagination. Defaults to 1.
The number of items per page for pagination. Defaults to 12.
The AVS value to filter by.
Response
200
application/json
Successful response containing rewards data and metadata.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/avs-rewards
{
"data": [
{
"type": "<string>",
"avs": "<string>",
"submitter": "<string>",
"tokenHopper": "<string>",
"submissionNonce": "<string>",
"rewardsSubmissionHash": "<string>",
"strategies": "<string>",
"token": "<string>",
"amount": "<string>",
"startTimestamp": "2023-11-07T05:31:56Z",
"duration": "<string>",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalRewards": 123,
"totalAmount": 123,
"uniqueTokens": 123
}
}
}