Get Prices
curl --request GET \
--url https://app-backend.toolsforhumanity.com/public/v1/miniapps/pricesconst options = {method: 'GET'};
fetch('https://app-backend.toolsforhumanity.com/public/v1/miniapps/prices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"result": {
"prices": {}
}
}Developer Portal
Get Prices
Query latest prices of tokens in various fiat currencies.
GET
/
public
/
v1
/
miniapps
/
prices
Get Prices
curl --request GET \
--url https://app-backend.toolsforhumanity.com/public/v1/miniapps/pricesconst options = {method: 'GET'};
fetch('https://app-backend.toolsforhumanity.com/public/v1/miniapps/prices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"result": {
"prices": {}
}
}Was this page helpful?