Rewards
Rewards Status
Ecosystem
Operators
Withdrawals
Deposits
Distribution Roots
Rewards
Rewards Status
Returns a paginated list of rewards filtered by status (active/inactive), with metadata and statistics.
GET
/
eigenlayer
/
rewards-status
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/rewards-status
{
"data": [
{
"type": "<string>",
"avs": "<string>",
"submitter": "<string>",
"tokenHopper": "<string>",
"submissionNonce": "<string>",
"rewardsSubmissionHash": "<string>",
"strategies": [
{}
],
"token": "<string>",
"amount": "<string>",
"startTimestamp": "<string>",
"duration": "<string>",
"updatedAt": {}
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalRewards": 123,
"totalRewardAmount": 123
}
}
}
Query Parameters
The page number for pagination (default is 1).
The number of results per page (default is 12).
The status of the rewards (active or inactive). Default is 'active'.
Available options:
active
, inactive
Response
200
application/json
Rewards fetched successfully.
The type of reward.
The AVS address.
The submitter's address.
The token hopper address.
The submission nonce.
The hash of the rewards submission.
The parsed strategies for the reward.
The reward token address.
The reward amount.
The start timestamp of the reward.
The duration of the reward.
Metadata for the last update.
The total number of rewards.
The current page number.
The number of results per page.
The total number of pages.
Indicates if there are more results available.
curl --request GET \
--url https://api.blockflow.network/rest/eigenlayer/rewards-status
{
"data": [
{
"type": "<string>",
"avs": "<string>",
"submitter": "<string>",
"tokenHopper": "<string>",
"submissionNonce": "<string>",
"rewardsSubmissionHash": "<string>",
"strategies": [
{}
],
"token": "<string>",
"amount": "<string>",
"startTimestamp": "<string>",
"duration": "<string>",
"updatedAt": {}
}
],
"meta": {
"total": 123,
"page": 123,
"limit": 123,
"totalPages": 123,
"hasMore": true,
"statistics": {
"totalRewards": 123,
"totalRewardAmount": 123
}
}
}