Available Symbols
curl --request GET \
--url https://api.tickdb.ai/v1/symbols/available \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.tickdb.ai/v1/symbols/available"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.tickdb.ai/v1/symbols/available', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tickdb.ai/v1/symbols/available",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tickdb.ai/v1/symbols/available"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tickdb.ai/v1/symbols/available")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tickdb.ai/v1/symbols/available")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 0,
"message": "success",
"data": {
"products": [
{
"symbol": "000001.SZ",
"name": "平安银行",
"market": "CN",
"type": "stock",
"currency": "CNY",
"is_active": true,
"updated_at": "2026-03-15T20:27:58Z"
}
],
"summary": {
"total_products": 32492,
"by_market": {
"CN": 6643,
"GLOBAL": 14833,
"HK": 2909,
"US": 8107
},
"by_type": {
"crypto": 877,
"stock": 17658,
"forex": 1207,
"indices": 12750
},
"last_updated": "2026-03-27T11:09:44+08:00"
},
"pagination": {
"limit": 10,
"offset": 0,
"total": 6642,
"count": 10
}
}
}Market Data APIs
Symbol Query
Query products supported by TickDB, covering forex, indices, US stocks, HK stocks, A-shares, China futures, and crypto markets, with the product list continuously growing.
GET
/
v1
/
symbols
/
available
Available Symbols
curl --request GET \
--url https://api.tickdb.ai/v1/symbols/available \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.tickdb.ai/v1/symbols/available"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.tickdb.ai/v1/symbols/available', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.tickdb.ai/v1/symbols/available",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.tickdb.ai/v1/symbols/available"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.tickdb.ai/v1/symbols/available")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tickdb.ai/v1/symbols/available")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 0,
"message": "success",
"data": {
"products": [
{
"symbol": "000001.SZ",
"name": "平安银行",
"market": "CN",
"type": "stock",
"currency": "CNY",
"is_active": true,
"updated_at": "2026-03-15T20:27:58Z"
}
],
"summary": {
"total_products": 32492,
"by_market": {
"CN": 6643,
"GLOBAL": 14833,
"HK": 2909,
"US": 8107
},
"by_type": {
"crypto": 877,
"stock": 17658,
"forex": 1207,
"indices": 12750
},
"last_updated": "2026-03-27T11:09:44+08:00"
},
"pagination": {
"limit": 10,
"offset": 0,
"total": 6642,
"count": 10
}
}
}Notes
- Market codes are case-insensitive
- Refer to Data Specification for product naming conventions
- Only active products with confirmed availability are returned
- Use
market=CN&type=futuresto query available China futures - You can also browse and search all supported products in the TickDB Dashboard product management page

Markets & Product Types
Usemarket and type parameters to filter products flexibly. They can be used individually or combined.
| market | type | Description | Volume |
|---|---|---|---|
| GLOBAL | forex | Forex pairs & precious metals | 1,200+ |
| GLOBAL | indices | Market indices | 12,900+ |
| GLOBAL | crypto | Cryptocurrency pairs | 800+ |
| US | stock | US stocks | 12,400+ |
| HK | stock | Hong Kong stocks | 4,300+ |
| CN | stock | A-shares | 6,000+ |
| CN | futures | China futures | Continuously updated |
marketfilters by specific market, e.g.market=CNreturns A-shares and China futurestypefilters by product category, e.g.type=stockreturns all stocks across US + HK + CN- Combined:
market=HK&type=stockreturns only HK stocks
Request Parameters
| Parameter | Required | Description |
|---|---|---|
| type | No | Product type filter: stock, crypto, forex, indices, futures |
| market | No | Market filter: GLOBAL, US, HK, CN |
| limit | No | Number of results per page, default 100, max 1000 |
| offset | No | Pagination offset, default 0 |
Response Fields
| Field | Description |
|---|---|
| products | Array of products |
| └─ symbol | Product symbol code |
| └─ name | Product name |
| └─ market | Market code |
| └─ type | Product type (stock/crypto/forex/indices/futures) |
| └─ currency | Trading currency (CNY/USD/HKD/USDT) |
| └─ is_active | Whether the symbol is active |
| └─ updated_at | Last updated time |
| summary | Summary information |
| └─ total_products | Total number of products |
| └─ by_market | Count by market |
| └─ by_type | Count by type |
| └─ last_updated | Last updated time |
| pagination | Pagination information |
| └─ limit | Page size |
| └─ offset | Offset |
| └─ total | Total count |
| └─ count | Number of items returned in current page |
Authorizations
Query Parameters
Product type filter
Available options:
stock, crypto, forex, indices, futures Example:
"stock"
Market filter
Available options:
GLOBAL, US, HK, CN Example:
"CN"
Number of symbols per page (default 100, max 1000)
Required range:
1 <= x <= 1000Example:
50
Offset for pagination (default 0)
Required range:
x >= 0Example:
0
