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

page
integer
default:
1

The page number for pagination (default is 1).

limit
integer
default:
12

The number of results per page (default is 12).

status
enum<string>
default:
active

The status of the rewards (active or inactive). Default is 'active'.

Available options:
active,
inactive

Response

200
application/json
Rewards fetched successfully.
data
object[]
meta
object