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
  • Example Request (All Assets)
  • Example Request (Single Asset)
  • Example Response

Was this helpful?

  1. APIs
  2. REST V1
  3. Assets

Get Supported Assets

PreviousAssetsNextAdd New Asset

Last updated 1 month ago

Was this helpful?

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 under development, additional metadata will be added to the assets.

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 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"
        }
      ]
    }
  ]
}
asset