Latest scores
curl --request GET \
--url https://api.atlasyield.club/v1/scores \
--header 'x-api-key: <api-key>'import requests
url = "https://api.atlasyield.club/v1/scores"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.atlasyield.club/v1/scores', 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.atlasyield.club/v1/scores",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.atlasyield.club/v1/scores"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.atlasyield.club/v1/scores")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.atlasyield.club/v1/scores")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"scorerVersion": "2.0.0",
"count": 341,
"disclaimer": "Research and information, not investment advice.",
"data": [
{
"vaultId": "aave-v3:8453:0x4e65fe4dba92790696d040ac24aa414708f5c0ab",
"chainId": 8453,
"protocolId": "aave-v3",
"asset": "USDC",
"assetClass": "stable",
"composite": 87.5,
"pillarScores": {
"yield": 82,
"safety": 90,
"liquidity": 88,
"sustainability": 85
},
"apy": 5.21,
"tvl": 1250400,
"scoredAt": "2023-11-07T05:31:56Z",
"scorerVersion": "2.0.0"
}
]
}Endpoints
Latest scores
The most recent composite + pillar scores for every tracked vault — one row per vault, newest first.
GET
/
scores
Latest scores
curl --request GET \
--url https://api.atlasyield.club/v1/scores \
--header 'x-api-key: <api-key>'import requests
url = "https://api.atlasyield.club/v1/scores"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.atlasyield.club/v1/scores', 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.atlasyield.club/v1/scores",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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.atlasyield.club/v1/scores"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
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.atlasyield.club/v1/scores")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.atlasyield.club/v1/scores")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"scorerVersion": "2.0.0",
"count": 341,
"disclaimer": "Research and information, not investment advice.",
"data": [
{
"vaultId": "aave-v3:8453:0x4e65fe4dba92790696d040ac24aa414708f5c0ab",
"chainId": 8453,
"protocolId": "aave-v3",
"asset": "USDC",
"assetClass": "stable",
"composite": 87.5,
"pillarScores": {
"yield": 82,
"safety": 90,
"liquidity": 88,
"sustainability": 85
},
"apy": 5.21,
"tvl": 1250400,
"scoredAt": "2023-11-07T05:31:56Z",
"scorerVersion": "2.0.0"
}
]
}Authorizations
Per-partner API key. The API fails closed — a missing or invalid key is rejected with 401.
Query Parameters
Filter to one EVM chain id.
Filter to one protocol slug.
⌘I