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

page
integer
default:
1

The page number for pagination. Defaults to 1.

limit
integer
default:
12

The number of items per page for pagination. Defaults to 12.

avs
string
required

The AVS value to filter by.

Response

200
application/json
Successful response containing rewards data and metadata.
data
object[]
meta
object