Skip to main content
GET
/
v1
/
symbols
/
available
Available Symbols
curl --request GET \
  --url https://api.tickdb.ai/v1/symbols/available \
  --header 'X-API-Key: <api-key>'
{
  "code": 0,
  "message": "success",
  "data": {
    "symbols": [
      {
        "symbol": "BTCUSDT",
        "market": "CRYPTO",
        "base_asset": "BTC",
        "quote_asset": "USDT",
        "status": "active"
      }
    ],
    "total": 1250,
    "page": 1,
    "limit": 50
  }
}

Available Symbols

GET /v1/symbols/available

Overview

Query all available trading symbols supported by TickDB.

Supported Markets

  • CRYPTO - Cryptocurrency pairs
  • US - US Stock market
  • HK - Hong Kong Stock Exchange
  • FX - Foreign Exchange (Forex)
  • INDEX - Market indices
  • METAL - Precious metals
curl -H "X-API-Key: YOUR_API_KEY" \
     "https://api.tickdb.ai/v1/symbols/available?market=FOREX&limit=5"

Example Response

{
    "products": [
        {
            "symbol": "AUDBRL",
            "name": "AUDBRL",
            "market": "FOREX",
            "product_type": "forex",
            "currency": "USD",
            "is_active": true,
            "updated_at": "2026-01-13T11:19:59+08:00"
        },
        {
            "symbol": "AUDCAD",
            "name": "AUDCAD",
            "market": "FOREX",
            "product_type": "forex",
            "currency": "USD",
            "is_active": true,
            "updated_at": "2026-01-13T11:19:59+08:00"
        },
        {
            "symbol": "AUDCHF",
            "name": "AUDCHF",
            "market": "FOREX",
            "product_type": "forex",
            "currency": "USD",
            "is_active": true,
            "updated_at": "2026-01-13T11:19:59+08:00"
        },
        {
            "symbol": "AUDCNY",
            "name": "AUDCNY",
            "market": "FOREX",
            "product_type": "forex",
            "currency": "USD",
            "is_active": true,
            "updated_at": "2026-01-13T11:19:59+08:00"
        },
        {
            "symbol": "AUDCZK",
            "name": "AUDCZK",
            "market": "FOREX",
            "product_type": "forex",
            "currency": "USD",
            "is_active": true,
            "updated_at": "2026-01-13T11:19:59+08:00"
        }
    ],
    "summary": {
        "total_products": 434,
        "by_market": {
            "FOREX": 434
        },
        "last_updated": "2026-01-13T11:19:59+08:00"
    },
    "cache_info": {
        "from_cache": true,
        "cached_at": "2026-01-13T11:19:59+08:00",
        "expires_at": "2026-01-13T11:49:59+08:00"
    },
    "pagination": {
        "limit": 5,
        "offset": 0,
        "count": 5
    }
}

Notes

  • Market codes are case-insensitive
  • Symbol naming rules are documented in Data Specification

Authorizations

X-API-Key
string
header
required

Query Parameters

market
enum<string>

Market filter

Available options:
CRYPTO,
US,
HK,
FX,
INDEX,
METAL
Example:

"CRYPTO"

limit
integer
default:100

Number of symbols (default 100, max 500)

Required range: 1 <= x <= 500
Example:

50

page
integer
default:1

Page number for pagination

Required range: x >= 1
Example:

1

Response

200 - application/json

Successful response

code
integer
Example:

0

message
string
Example:

"success"

data
object