GET
/
events
/
rewards
curl --request GET \
  --url https://api.eigenexplorer.com/events/rewards \
  --header 'X-API-Token: <x-api-token>'
{
  "tx": "0xae41958d0342a4485536f701c72723625131680f182eb21f95abdac6d74d0ff0",
  "blockNumber": 21045085,
  "blockTime": "2024-10-25T20:41:11.000Z",
  "type": "REWARDS",
  "args": {
    "avs": "0x1de75eaab2df55d467494a172652579e6fa4540e",
    "submissionNonce": 2,
    "rewardsSubmissionHash": "0x1e391c015c923972811a27e1c6c3a874511e47033f1022021f29967a60ab2c87",
    "rewardsSubmissionToken": "0xba50933c268f567bdc86e1ac131be072c6b0b71a",
    "rewardsSubmissionAmount": "49000000000000000000000",
    "rewardsSubmissionStartTimeStamp": 1728518400,
    "rewardsSubmissionDuration": 6048000,
    "strategies": [
      {
        "strategy": "0x0fe4f44bee93503346a3ac9ee5a26b130a5796d6",
        "multiplier": "1068966896363604679",
        "amount": "3.7932452554246293e+21",
        "amountEthValue": 0.0638779707245759
      }
    ]
  },
  "ethValue": 1
}

The default date range between startAt and endAt is 7 days, with startAt set 7 days before endAt.

By default, endAt is set to the current timestamp (now).
The maximum allowed date range is 30 days.

Headers

X-API-Token
string
required

API Token for authentication

Query Parameters

txHash
string

The transaction hash associated with the event

startAt
string

Start date in ISO string format

Example:

"2024-11-15T00:00:00.000Z"

endAt
string

End date in ISO string format

Example:

"2024-12-15T00:00:00.000Z"

rewardsSubmissionHash
string

The reward submission hash associated with the event

rewardsSubmissionToken
string

The token address used for the rewards submission

withIndividualAmount
enum<string>
default:false

Toggle whether the route should return individual share amount for each strategy

Available options:
true,
false
Example:

"false"

withEthValue
enum<string>
default:false

Toggle whether the route should return value denominated in ETH

Available options:
true,
false
Example:

"false"

skip
string
default:0

The number of records to skip for pagination

Example:

0

take
string
default:12

The number of records to return for pagination

Example:

12

Response

200
application/json
The reward events found.
tx
string
required

The transaction hash

Example:

"0xae41958d0342a4485536f701c72723625131680f182eb21f95abdac6d74d0ff0"

blockNumber
number
required

The block number of the transaction

Example:

21045085

blockTime
string
required

The block time of the transaction as an ISO 8601 string

Example:

"2024-10-25T20:41:11.000Z"

type
enum<string>
required

The type of the event

Available options:
REWARDS
Example:

"REWARDS"

args
object
required
ethValue
number

The value of the shares in ETH

Example:

1