Retrieve all Liquid AVS Tokens (LATs)
curl --request GET \
--url https://api.area.club/latimport requests
url = "https://api.area.club/lat"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.area.club/lat', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.area.club/lat",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.area.club/lat"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.area.club/lat")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.area.club/lat")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{
"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
}
]
}
]
}{
"error": {
"code": "bad_request",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#bad_request"
}
}{
"error": {
"code": "unauthorized",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#unauthorized"
}
}{
"error": {
"code": "forbidden",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#forbidden"
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#not_found"
}
}{
"error": {
"code": "unprocessable_entity",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#unprocessable_entity"
}
}{
"error": {
"code": "rate_limit_exceeded",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#rate_limit_exceeded"
}
}{
"error": {
"code": "internal_server_error",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#internal_server_error"
}
}LAT Data API
Retrieve all Liquid AVS Tokens (LATs)
Returns all Liquid AVS Tokens (LATs). Optionally groups them by token type.
GET
/
lat
Retrieve all Liquid AVS Tokens (LATs)
curl --request GET \
--url https://api.area.club/latimport requests
url = "https://api.area.club/lat"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.area.club/lat', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.area.club/lat",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.area.club/lat"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.area.club/lat")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.area.club/lat")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{
"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
}
]
}
]
}{
"error": {
"code": "bad_request",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#bad_request"
}
}{
"error": {
"code": "unauthorized",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#unauthorized"
}
}{
"error": {
"code": "forbidden",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#forbidden"
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#not_found"
}
}{
"error": {
"code": "unprocessable_entity",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#unprocessable_entity"
}
}{
"error": {
"code": "rate_limit_exceeded",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#rate_limit_exceeded"
}
}{
"error": {
"code": "internal_server_error",
"message": "The requested resource was not found.",
"doc_url": "https://docs.eigenexplorer.com/api-reference/errors#internal_server_error"
}
}⌘I