GET
/
operators
/
{address}
/
magnitudes
curl --request GET \
  --url https://api.eigenexplorer.com/operators/{address}/magnitudes \
  --header 'X-API-Token: <x-api-token>'
{
  "operatorAddress": "0xd9322bb31f42c7caa12daad49699d655393f9524",
  "strategyAddress": "0x7d704507b76571a51d9cae8addabbfd0ba0e63d3",
  "maxMagnitude": "1000000000000000000",
  "encumberedMagnitude": "300000",
  "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

The address of the operator

Example:

"0x00107cfdeaddc0a3160ed2f6fedd627f313e7b1a"

Query Parameters

strategyAddress
string

The address of the restaking strategy

Response

200
application/json
The information regarding magnitudes.
operatorAddress
string
required

The operator contract address

Example:

"0xd9322bb31f42c7caa12daad49699d655393f9524"

strategyAddress
string
required

The strategy contract address

Example:

"0x7d704507b76571a51d9cae8addabbfd0ba0e63d3"

maxMagnitude
string
required

The maximum magnitude that can be allocated between all operator-sets for a strategy

Example:

"1000000000000000000"

encumberedMagnitude
string
required

The currently-allocated magnitude for the strategy

Example:

"300000"

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