Returns ecosystem-level data for UTY and yUTY tokens
curl --request GET \
--url https://api.yieldpoint.io/v1const options = {method: 'GET'};
fetch('https://api.yieldpoint.io/v1', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.yieldpoint.io/v1"
response = requests.get(url)
print(response.text){
"uty": {
"tokenSymbol": "<string>",
"address": "<string>",
"totalSupply": "<string>",
"tvl": "<string>"
},
"yuty": {
"tokenSymbol": "<string>",
"address": "<string>",
"apy": 123,
"apy30": 123,
"tvl": "<string>"
},
"cacheExpiry": {
"timestamp": 123,
"date": "<string>"
}
}Ecosystem
Returns ecosystem-level data for UTY and yUTY tokens
GET
/
v1
Returns ecosystem-level data for UTY and yUTY tokens
curl --request GET \
--url https://api.yieldpoint.io/v1const options = {method: 'GET'};
fetch('https://api.yieldpoint.io/v1', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.yieldpoint.io/v1"
response = requests.get(url)
print(response.text){
"uty": {
"tokenSymbol": "<string>",
"address": "<string>",
"totalSupply": "<string>",
"tvl": "<string>"
},
"yuty": {
"tokenSymbol": "<string>",
"address": "<string>",
"apy": 123,
"apy30": 123,
"tvl": "<string>"
},
"cacheExpiry": {
"timestamp": 123,
"date": "<string>"
}
}