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": {
    "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.

Notes

  • Market codes are case-insensitive
  • Refer to Data Specification for product naming conventions
  • You can also browse and search all supported products in the TickDB Dashboard product management page
TickDB Dashboard - Product Query

Markets & Product Types

Use market and type parameters to filter products flexibly. They can be used individually or combined.
markettypeDescriptionVolume
GLOBALforexForex pairs & precious metals1,200+
GLOBALindicesMarket indices12,900+
GLOBALcryptoCryptocurrency pairs800+
USstockUS stocks12,400+
HKstockHong Kong stocks4,300+
CNstockA-shares6,000+
  • market filters by specific market, e.g. market=CN returns only A-shares
  • type filters by product category, e.g. type=stock returns all stocks across US + HK + CN
  • Combined: market=HK&type=stock returns only HK stocks

Request Parameters

ParameterRequiredDescription
typeNoProduct type filter: stock, crypto, forex, indices
marketNoMarket filter: GLOBAL, US, HK, CN
limitNoNumber of results per page, default 100, max 1000
offsetNoPagination offset, default 0

Response Fields

FieldDescription
productsArray of products
└─ symbolProduct symbol code
└─ nameProduct name
└─ marketMarket code
└─ typeProduct type (stock/crypto/forex/indices)
└─ currencyTrading currency (CNY/USD/HKD/USDT)
└─ is_activeWhether the symbol is active
└─ updated_atLast updated time
summarySummary information
└─ total_productsTotal number of products
└─ by_marketCount by market
└─ by_typeCount by type
└─ last_updatedLast updated time
paginationPagination information
└─ limitPage size
└─ offsetOffset
└─ totalTotal count
└─ countNumber of items returned in current page

Authorizations

X-API-Key
string
header
required

Query Parameters

type
enum<string>

Product type filter

Available options:
stock,
crypto,
forex,
indices
Example:

"stock"

market
enum<string>

Market filter

Available options:
GLOBAL,
US,
HK,
CN
Example:

"CN"

limit
integer
default:100

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

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

50

offset
integer
default:0

Offset for pagination (default 0)

Required range: x >= 0
Example:

0

Response

200 - application/json

Successful response

code
integer
Example:

0

message
string
Example:

"success"

data
object