GET
/
avs
/
{address}
/
operator-sets
/
{operatorSetId}
curl --request GET \
  --url https://api.eigenexplorer.com/avs/{address}/operator-sets/{operatorSetId} \
  --header 'X-API-Token: <x-api-token>'
{
  "avsAddress": "0xba7cda36abeb28ad200591e6e4a963359b1f43df",
  "operatorSetId": 0,
  "strategies": [
    "0x7d704507b76571a51d9cae8addabbfd0ba0e63d3"
  ],
  "totalStakers": 1,
  "totalOperators": 1,
  "allocations": [
    {
      "operatorAddress": "0xd9322bb31f42c7caa12daad49699d655393f9524",
      "strategyAddress": "0x7d704507b76571a51d9cae8addabbfd0ba0e63d3",
      "magnitude": "100000",
      "effectBlock": 3326552
    }
  ],
  "createdAt": "2025-02-01T00:00:00.000Z",
  "createdAtBlock": 3325343,
  "updatedAt": "2025-02-01T00:00:00.000Z",
  "updatedAtBlock": 3325343
}

Headers

X-API-Token
string
required

API Token for authentication

Path Parameters

address
string
required

AVS service manager contract address

Example:

"0x870679e138bcdf293b7ff14dd44b70fc97e12fc0"

operatorSetId
number
required

The ID of the operator-set

Example:

1

Response

200
application/json
The information about operator-set.
avsAddress
string
required

The AVS contract address

Example:

"0xba7cda36abeb28ad200591e6e4a963359b1f43df"

operatorSetId
number
required

The ID of the operator-set

Example:

0

strategies
string[]
required

Array of strategy contract addresses

The strategy contract address

totalStakers
number
required

The count of stakers whose delegated operator is registered in the operator-set

Example:

1

totalOperators
number
required

The count of operators registered in the operator-set

Example:

1

allocations
object[]
required
createdAt
string
required

The timestamp when the record was created as an ISO 8601 string

Example:

"2025-02-01T00:00:00.000Z"

createdAtBlock
number
required

The block number when the record was created

Example:

3325343

updatedAt
string
required

The timestamp when the record was last updated as an ISO 8601 string

Example:

"2025-02-01T00:00:00.000Z"

updatedAtBlock
number
required

The block number when the record was last updated

Example:

3325343