跳转到主要内容
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