GET
/
avs
/
addresses
curl --request GET \
  --url https://api.eigenexplorer.com/avs/addresses \
  --header 'X-API-Token: <x-api-token>'
{
  "data": [
    {
      "address": "0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1",
      "name": "Example AVS",
      "logo": "https://example.avs/logo.png"
    }
  ],
  "meta": {
    "total": 30,
    "skip": 0,
    "take": 12
  }
}

Headers

X-API-Token
string
required

API Token for authentication

Query Parameters

searchMode
enum<string>
default:contains

Search mode

Available options:
contains,
startsWith
Example:

"contains"

searchByText
string

Case-insensitive search query

Example:

"eigen"

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 list of AVS addresses.
data
object[]
required
meta
object
required