Get Supported Assets
Description
Retrieve the full list of supported assets indexed by Aleno. Each asset includes its canonical symbol and all known on-chain token addresses across supported chains.
This endpoint is useful for resolving symbols to chain-specific token addresses, validating availability, and constructing queries for endpoints like /ticker
, /search
, and /state
.
If an asset is currently not supported, feel free to add it using Add New Asset
URL
GET https://pricing.aleno.ai/v1/assets
Headers
x-api-key: your-api-key
Query Parameters
Name
Type
Required
Description
symbol
string
No
Filter by asset symbol (e.g., WETH
, AAVE
, USDC
). Case-insensitive.
If symbol
is omitted, all assets are returned.
Response
Returns one or more asset entries, each including the canonical symbol and a list of token contract addresses across supported chains.
Example Request (All Assets)
GET https://pricing.aleno.ai/v1/assets
Example Request (Single Asset)
GET https://pricing.aleno.ai/v1/assets?symbol=WETH
Example Response
jsonCopierModifier{
"data": [
{
"symbol": "WETH",
"tokenMapping": [
{
"address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"chainId": "eth"
},
{
"address": "0x4200000000000000000000000000000000000006",
"chainId": "opt"
},
{
"address": "0x4200000000000000000000000000000000000006",
"chainId": "base"
},
{
"address": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1",
"chainId": "arb"
}
]
}
]
}
Last updated
Was this helpful?