GET
/
metrics
/
historical
/
lat
/
{address}
Retrieve historical aggregated data for a specific LAT
curl --request GET \
  --url https://api.area.club/metrics/historical/lat/{address}
{
  "data": [
    {
      "timestamp": "2025-04-28T00:00:00.000Z",
      "totalTvlEth": 6.971150594205651,
      "stakedTvlEth": 3.3671458538622976,
      "unstakedTvlEth": 3.6040047403433526,
      "apy": 0.057,
      "baseApy": 3.0727,
      "nativeApy": 0.1277,
      "totalApy": 3.2574,
      "totalUsers": 2
    }
  ]
}

Path Parameters

address
string
required

LAT contract address (proxy)

Example:

"0x94a2a0548681fda8d5e2ad5a8eeecd891e02a613"

Query Parameters

frequency
enum<string>
default:1d

Frequency of data points

Available options:
1d,
7d
variant
enum<string>
default:cumulative

Type of tally, discrete or cumulative

Available options:
discrete,
cumulative
Example:

"cumulative"

startAt
string
default:""

Start date in ISO string format

Example:

"2024-04-11T08:31:11.000"

endAt
string
default:""

End date in ISO string format

Example:

"2024-04-12T08:31:11.000"

Response

200
application/json

Historical aggregated data for the specified LAT

The response is of type object.