跳轉到主要內容
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": {
    "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
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tickdb.ai/llms.txt

Use this file to discover all available pages before exploring further.

注意事項

  • 市場代碼不區分大小寫
  • 產品命名規則請參閱數據規範文檔
  • 除 API 查詢外,您也可以登入 TickDB 官網 用戶中心,在產品管理頁面直接瀏覽和搜尋所有支持的產品
TickDB 用戶中心 - 產品查詢

市場與產品類型

透過 markettype 參數可以靈活過濾產品,兩者可單獨或組合使用。
markettype說明產品量級
GLOBALforex外匯貨幣對、貴金屬1,200+
GLOBALindices市場指數12,900+
GLOBALcrypto加密貨幣交易對800+
USstock美國股票12,400+
HKstock香港股票4,300+
CNstockA股6,000+
  • market 按具體市場過濾,如 market=CN 僅返回A股
  • type 按產品大類過濾,如 type=stock 返回 US + HK + CN 全部股票
  • 組合使用:market=HK&type=stock 僅返回港股

請求參數

參數名是否必須描述
type產品類型過濾,可選值:stock, crypto, forex, indices
market市場過濾,可選值:GLOBAL, US, HK, CN
limit每頁返回數量,預設100,最大1000
offset分頁偏移量,預設0

返回字段說明

字段名描述
products產品陣列
└─ symbol產品代碼
└─ name產品名稱
└─ market市場代碼
└─ type產品類型(stock/crypto/forex/indices)
└─ currency交易幣種(CNY/USD/HKD/USDT)
└─ is_active是否活躍
└─ updated_at更新時間
summary匯總資訊
└─ total_products產品總數
└─ by_market按市場統計數量
└─ by_type按類型統計數量
└─ last_updated最後更新時間
pagination分頁資訊
└─ limit每頁數量
└─ offset偏移量
└─ total總數
└─ count當前頁返回數量

授權

X-API-Key
string
header
必填

查詢參數

type
enum<string>

Product type filter

可用選項:
stock,
crypto,
forex,
indices
範例:

"stock"

market
enum<string>

Market filter

可用選項:
GLOBAL,
US,
HK,
CN
範例:

"CN"

limit
integer
預設值:100

Number of symbols per page (default 100, max 1000)

必填範圍: 1 <= x <= 1000
範例:

50

offset
integer
預設值:0

Offset for pagination (default 0)

必填範圍: x >= 0
範例:

0

回應

200 - application/json

Successful response

code
integer
範例:

0

message
string
範例:

"success"

data
object