Skip to main content
GET
/
eigenlayer
/
reward-claim
Reward Claims
curl --request GET \
  --url https://api.blockflow.network/rest/eigenlayer/reward-claim \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "root": "<string>",
      "earner": "<string>",
      "claimer": "<string>",
      "recipient": "<string>",
      "token": "<string>",
      "claimedAmount": "<string>",
      "updatedAt": {
        "blockNumber": "<string>",
        "blockTimestamp": "<string>",
        "transactionHash": "<string>"
      }
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123,
    "totalPages": 123,
    "hasMore": true,
    "statistics": {
      "totalRewardClaims": "<string>",
      "totalClaimedAmount": "<string>",
      "uniqueTokens": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.rescan.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Query Parameters

page
integer
default:1

The page number for pagination. Defaults to 1.

limit
integer
default:12

The number of items per page. Defaults to 12.

root
string

Filter by root.

earner
string

Filter by earner.

claimer
string

Filter by claimer.

recipient
string

Filter by recipient.

token
string

Filter by token.

Response

Successful response containing the reward claims data and metadata.

data
object[]
meta
object