Get Tickers
Description
Retrieve the latest aggregated pricing and volume information for a specific ticker symbol.
Only USD quotes are supported for now
URL
GET https://pricing.aleno.ai/v1/assets/ticker?symbol={symbol}
Headers
x-api-key: your-api-key
Query Parameters
Name
Type
Required
Description
symbol
string
Yes
The asset pair in BASE/QUOTE
format. Example: WBTC/USD
Response
Returns a ticker object with pricing data aggregated from centralized (CEX) and decentralized (DEX) sources.
Example Response
{
"data": {
"id": "WBTC/USD",
"aggregated": {
"price": 87107.08029830185,
"h24UsdVolume": 295895764.524683
},
"cex": {
"price": 87095.0654483101,
"h24UsdVolume": 18124441.389037095
},
"dex": {
"price": 87107.86426131867,
"h24UsdVolume": 277771323.1356459,
"usdTvl": 695400833.3529233
}
}
}
Last updated
Was this helpful?