cURL
curl --request GET \
--url https://stake-for-fee-api.meteora.ag/analytics/allconst options = {method: 'GET'};
fetch('https://stake-for-fee-api.meteora.ag/analytics/all', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://stake-for-fee-api.meteora.ag/analytics/all', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://stake-for-fee-api.meteora.ag/analytics/allfalse{
"total_fee_vaults": 1,
"total_staked_amount_usd": 123
}analytics
Get analyticsall
GET
/
analytics
/
all
cURL
curl --request GET \
--url https://stake-for-fee-api.meteora.ag/analytics/allconst options = {method: 'GET'};
fetch('https://stake-for-fee-api.meteora.ag/analytics/all', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://stake-for-fee-api.meteora.ag/analytics/all', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://stake-for-fee-api.meteora.ag/analytics/allfalse{
"total_fee_vaults": 1,
"total_staked_amount_usd": 123
}Was this page helpful?
⌘I

