Skip to main content
GET
https://api.dexaggregatorbeta.xyz
/
api
/
token-pairs
curl 'https://api.dexaggregatorbeta.xyz/api/token-pairs' | jq .
{
  "data": [
    {
      "ticker": "BTC",
      "logoUrl": "https://coin-images.coingecko.com/coins/images/1/small/bitcoin.png?1696501400",
      "platform_names": {
        "hyperliquid": "BTC",
        "aster": "BTCUSDT",
        "lighter": "BTC"
      },
      "availability": {
        "hyperliquid": true,
        "aster": true,
        "lighter": true
      },
      "platforms": {
        "hyperliquid": {},
        "aster": {},
        "lighter": {}
      }
    },
    {
      "ticker": "ETH",
      "logoUrl": "https://coin-images.coingecko.com/coins/images/279/small/ethereum.png?1696501628",
      "platform_names": {
        "hyperliquid": "ETH",
        "aster": "ETHUSDT",
        "lighter": "ETH"
      },
      "availability": {
        "hyperliquid": true,
        "aster": true,
        "lighter": true
      },
      "platforms": {
        "hyperliquid": {},
        "aster": {},
        "lighter": {}
      }
    }
  ],
  "timestamp": 1766988481242
}

Overview

This endpoint returns a comprehensive list of all available token pairs across the supported trading platforms (Hyperliquid, Aster, and Lighter). Each token includes information about its availability, platform-specific names, and metadata.

Request

curl 'https://api.dexaggregatorbeta.xyz/api/token-pairs' | jq .

Response

data
array
Array of token pair objects
timestamp
number
Unix timestamp when the data was generated
{
  "data": [
    {
      "ticker": "BTC",
      "logoUrl": "https://coin-images.coingecko.com/coins/images/1/small/bitcoin.png?1696501400",
      "platform_names": {
        "hyperliquid": "BTC",
        "aster": "BTCUSDT",
        "lighter": "BTC"
      },
      "availability": {
        "hyperliquid": true,
        "aster": true,
        "lighter": true
      },
      "platforms": {
        "hyperliquid": {},
        "aster": {},
        "lighter": {}
      }
    },
    {
      "ticker": "ETH",
      "logoUrl": "https://coin-images.coingecko.com/coins/images/279/small/ethereum.png?1696501628",
      "platform_names": {
        "hyperliquid": "ETH",
        "aster": "ETHUSDT",
        "lighter": "ETH"
      },
      "availability": {
        "hyperliquid": true,
        "aster": true,
        "lighter": true
      },
      "platforms": {
        "hyperliquid": {},
        "aster": {},
        "lighter": {}
      }
    }
  ],
  "timestamp": 1766988481242
}

Use Cases

  • Platform Discovery: Find which platforms support specific tokens
  • Symbol Mapping: Get platform-specific ticker symbols for cross-platform trading
  • Token Metadata: Access token logos and standardized information
  • Availability Checking: Verify token availability before placing orders

Notes

  • The response includes both cryptocurrency tokens and traditional forex pairs (e.g., USDCAD, USDJPY)
  • Some tokens may have different symbols across platforms (e.g., “BTC” vs “BTCUSDT”)
  • Logo URLs are sourced from CoinGecko and may be null for some tokens
  • The platforms object contains platform-specific configurations (currently empty objects)