GET
/
operators
/
{address}
/
rewards
curl --request GET \
  --url https://api.eigenexplorer.com/operators/{address}/rewards \
  --header 'X-API-Token: <x-api-token>'
{
  "address": "0xdbed88d83176316fc46797b43adee927dc2ff2f5",
  "rewardTokens": [
    "0xba50933c268f567bdc86e1ac131be072c6b0b71a",
    "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
  ],
  "rewardStrategies": [
    "0x0fe4f44bee93503346a3ac9ee5a26b130a5796d6",
    "0x13760f50a9d7377e4f20cb8cf9e4c26586c658ff"
  ]
}

Headers

X-API-Token
string
required

API Token for authentication

Path Parameters

address
string
required

The address of the operator

Example:

"0x00107cfdeaddc0a3160ed2f6fedd627f313e7b1a"

Response

200
application/json
The reward strategies and tokens found for the Operator.
address
string
required

The contract address of the AVS operator

Example:

"0xdbed88d83176316fc46797b43adee927dc2ff2f5"

rewardTokens
string[]
required

List of tokens in which the operator receives rewards

Example:
[
  "0xba50933c268f567bdc86e1ac131be072c6b0b71a",
  "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
]
rewardStrategies
string[]
required

List of strategies for which the operator receives rewards

Example:
[
  "0x0fe4f44bee93503346a3ac9ee5a26b130a5796d6",
  "0x13760f50a9d7377e4f20cb8cf9e4c26586c658ff"
]