cURL
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 } }
List tradable instruments and supported markets.
/v1/symbols/available
curl -H "X-API-Key: YOUR_API_KEY" \ "https://api.tickdb.ai/v1/symbols/available?market=FOREX&limit=5"
{ "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 } }
Market filter
CRYPTO
US
HK
FX
INDEX
METAL
"CRYPTO"
Number of symbols (default 100, max 500)
1 <= x <= 500
50
Page number for pagination
x >= 1
1
Successful response
0
"success"
Show child attributes