GET
/
lat
/
{address}
Retrieve a specific LAT
curl --request GET \
  --url https://api.area.club/lat/{address}
{
  "proxyAddress": "0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1",
  "implementationAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564d",
  "name": "EigenDA-ETH Liquid AVS Token",
  "symbol": "xEigenDA-ETH",
  "avsAddress": "0x2344c0fe02ccd2b32155ca0ffcb1978a6d96a552",
  "chainId": 1,
  "maxNodes": 12,
  "contractDeployments": {
    "implementation": {
      "liquidTokenManager": "0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1"
    },
    "proxy": {
      "liquidTokenManager": "0x93c4b944d05dfe6df7645a86cd2206016c51564d"
    }
  },
  "tokens": [
    {
      "address": "0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1",
      "strategyAddress": "0x93c4b944d05dfe6df7645a86cd2206016c51564d",
      "volatilityThreshold": "700000000000000000",
      "pricePerUnit": "1020000000000000000",
      "decimals": 18
    }
  ],
  "assets": [
    {
      "asset": "<string>",
      "balance": "<string>",
      "queuedBalance": "<string>"
    }
  ],
  "tvl": {
    "tvl": 123,
    "unstakedTvl": 123,
    "stakedTvl": 123,
    "queuedTvl": 123,
    "tvlAssets": {},
    "tvlAssetsEth": {}
  },
  "apys": {
    "current": {
      "apy": "0.057",
      "baseApy": "3.073",
      "nativeApy": "0.128",
      "totalApy": "3.257"
    },
    "avg30d": {
      "apy": "0.057",
      "baseApy": "3.073",
      "nativeApy": "0.128",
      "totalApy": "3.257"
    },
    "trailing7d": {
      "apy": "0.057",
      "baseApy": "3.073",
      "nativeApy": "0.128",
      "totalApy": "3.257"
    },
    "trailing30d": {
      "apy": "0.057",
      "baseApy": "3.073",
      "nativeApy": "0.128",
      "totalApy": "3.257"
    },
    "trailing3m": {
      "apy": "0.057",
      "baseApy": "3.073",
      "nativeApy": "0.128",
      "totalApy": "3.257"
    },
    "trailing6m": {
      "apy": "0.057",
      "baseApy": "3.073",
      "nativeApy": "0.128",
      "totalApy": "3.257"
    },
    "trailing1y": {
      "apy": "0.057",
      "baseApy": "3.073",
      "nativeApy": "0.128",
      "totalApy": "3.257"
    }
  },
  "curatedMetadata": {
    "avsAddress": "0x2344c0fe02ccd2b32155ca0ffcb1978a6d96a552",
    "metadataName": "Example AVS",
    "metadataDescription": "This is an example AVS",
    "metadataDiscord": "https://discord.com/invite/example",
    "metadataLogo": "The URL of the AVS's logo",
    "metadataTelegram": "The URL of the AVS's Telegram channel",
    "metadataWebsite": "https://example.com",
    "metadataX": "https://twitter.com/example",
    "metadataGithub": "https://github.com/example",
    "metadataTokenAddress": "0x2344c0fe02ccd2b32155ca0ffcb1978a6d96a552",
    "tags": [
      "Example tag 1",
      "Example tag 2"
    ]
  }
}

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"

withCuratedMetadata
enum<string>
default:false

Toggle whether the route should send curated metadata

Available options:
true,
false
Example:

"false"

withApy
enum<string>
default:false

Toggle whether the route should send apy data

Available options:
true,
false
Example:

"false"

Response

200
application/json

Detailed information about the requested LAT

The response is of type object.