GET
/
operators
/
addresses
curl --request GET \
  --url https://api.eigenexplorer.com/operators/addresses \
  --header 'X-API-Token: <x-api-token>'
{
  "data": [
    {
      "address": "0x0000039b2f2ac9e3492a0f805ec7aea9eaee0c25",
      "name": "Example Operator",
      "logo": "https://example.operator/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 operator addresses.
data
object[]
required
meta
object
required