GET
/
lat
/
{address}
/
operators
Retrieve Operators for a LAT
curl --request GET \
  --url https://api.area.club/lat/{address}/operators
{
  "data": [
    {
      "operator": "0xdbed88d83176316fc46797b43adee927dc2ff2f5",
      "allocations": [
        {
          "asset": "0x3f1c547b21f65e10480de3ad8e19faac46c95034",
          "strategy": "0x7D704507b76571a51d9caE8AdDAbBFd0ba0e63d3",
          "stakedAmount": "833048866576347130",
          "eigenLayerShares": "990438677294402488"
        }
      ],
      "tvl": {
        "tvl": 1.6474940553244894,
        "tvlStrategies": {
          "stETH": 0.8326977176481988,
          "sfrxETH": 0.7320249283999721
        },
        "tvlStrategiesEth": {
          "stETH": 0.8318301518857287,
          "sfrxETH": 0.8156639034387608
        }
      }
    }
  ]
}

Path Parameters

address
string
required

LAT contract address (proxy)

Example:

"0x94a2a0548681fda8d5e2ad5a8eeecd891e02a613"

Query Parameters

withTvl
enum<string>
default:false

Toggle whether the route should calculate the TVL from shares

Available options:
true,
false
Example:

"false"

Response

200
application/json

List of Operators delegated to by the LAT

The response is of type object.