Returns yUTY APY
curl --request GET \
--url https://api.yieldpoint.io/v1/yutyconst options = {method: 'GET'};
fetch('https://api.yieldpoint.io/v1/yuty', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.yieldpoint.io/v1/yuty"
response = requests.get(url)
print(response.text){
"tokenSymbol": "<string>",
"address": "<string>",
"apy": 123,
"apy30": 123,
"tvl": "<string>",
"vaultHistory": [
{
"totalAssets": 123,
"totalSupply": 123,
"timestamp": 123,
"price": 123,
"date": "<string>",
"apy7d": 123,
"apy30d": 123,
"apy7dMovingAverage": 123,
"apy30dMovingAverage": 123
}
]
}yUty
Returns yUTY APY
GET
/
v1
/
yuty
Returns yUTY APY
curl --request GET \
--url https://api.yieldpoint.io/v1/yutyconst options = {method: 'GET'};
fetch('https://api.yieldpoint.io/v1/yuty', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.yieldpoint.io/v1/yuty"
response = requests.get(url)
print(response.text){
"tokenSymbol": "<string>",
"address": "<string>",
"apy": 123,
"apy30": 123,
"tvl": "<string>",
"vaultHistory": [
{
"totalAssets": 123,
"totalSupply": 123,
"timestamp": 123,
"price": 123,
"date": "<string>",
"apy7d": 123,
"apy30d": 123,
"apy7dMovingAverage": 123,
"apy30dMovingAverage": 123
}
]
}