Returns a stable list of (address, isNative, tokenId, price) rows for every curated Aleo token on the requested network — independent of the caller’s balance. Used by the widget to display fiat values on the Shielded balance tab, which is built client-side from records and never goes through the multichain /accountBalances endpoint. Tokens whose CoinGecko id has no cached price are returned with price: null.
curl --request GET \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/chains/aleo/prices \
--header 'Authorization: Bearer <token>'{
"result": {
"prices": [
{
"address": "<string>",
"isNative": true,
"symbol": "<string>",
"tokenId": "<string>",
"price": 123
}
]
}
}Documentation Index
Fetch the complete documentation index at: https://www.dynamic.xyz/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the environment
36^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"95b11417-f18f-457f-8804-68e361f9164f"
Aleo network whose curated price list to return.
testnet, mainnet Curated price list
Response wrapper for GET /chains/aleo/prices. Always present even
when the requested network has no curated tokens — result.prices
will simply be an empty array.
Show child attributes
Was this page helpful?
curl --request GET \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/chains/aleo/prices \
--header 'Authorization: Bearer <token>'{
"result": {
"prices": [
{
"address": "<string>",
"isNative": true,
"symbol": "<string>",
"tokenId": "<string>",
"price": 123
}
]
}
}