Aleno
  • Welcome
  • Supported Liquidity Sources
  • Asset Pricing Methodology
  • APIs
    • REST V1
      • Assets
        • Get Supported Assets
        • Add New Asset
        • Get Tickers
      • Pools
        • Get state
        • Search Pools by Symbol Pair
      • RWAs
        • Equities
        • FX and metals
        • Economic Indicators
    • Websocket V1
    • Data Reference
Powered by GitBook
On this page
  • Description
  • URL
  • Headers
  • Query Parameters
  • Response

Was this helpful?

  1. APIs
  2. REST V1
  3. Assets

Get Tickers

PreviousAdd New AssetNextPools

Last updated 2 months ago

Was this helpful?

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 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
    }
  }
}

ticker