GET
/
rewards
/
strategies
curl --request GET \
  --url https://api.eigenexplorer.com/rewards/strategies \
  --header 'X-API-Token: <x-api-token>'
{
  "strategies": [
    {
      "strategyAddress": "0x0fe4f44bee93503346a3ac9ee5a26b130a5796d6",
      "tokens": [
        "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
        "0xba50933c268f567bdc86e1ac131be072c6b0b71a"
      ]
    }
  ],
  "total": 15
}

An AVS can allocate rewards in multiple tokens to the same strategy.

Headers

X-API-Token
string
required

API Token for authentication

Response

200
application/json
List of strategies along with associated reward tokens.
strategies
object[]
required
total
number
required

The total number of strategies

Example:

15