Get Tickers

Description

Retrieve the latest aggregated pricing and volume information for a specific ticker symbol.

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 an object with pricing data aggregated from centralized (CEX) and decentralized (DEX) sources.

Response Fields

  • data: object

    • id: string The asset symbol pair, formatted as BASE/QUOTE (e.g., WBTC/USD).

    • aggregated: object

      • price: number Volume-weighted average price across all available sources (CEX + DEX).

      • h24UsdVolume: number Aggregated 24-hour trading volume in USD across all sources.

    • cex: object

      • price: number Latest matched price from centralized exchanges.

      • h24UsdVolume: number 24-hour trading volume in USD sourced from centralized exchanges.

    • dex: object

      • price: number Latest matched price from decentralized exchanges.

      • h24UsdVolume: number 24-hour trading volume in USD sourced from decentralized exchanges.

      • usdTvl: number Total USD value locked across relevant DEX pools.

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?