Free Financial Products List API Financial Market Data API REST API Covers Real-Time and Historical Data for Global Major Markets Including Chinese, US, and Hong Kong Stocks, Global Forex, Indices, Futures, Funds, and Crypto.

Please select

Product List

GET
/symbol/list

Request Parameters

typeenumRequired
Stocks
Product category stock | forex | indices | crypto | future | fund
regionenumRequired
Hong Kong
Market code. Stocks include (HK, SZ, SH, US, SG, JP, TW, IN, TH, DE, MX, MY, TR, ES, NL, GB, ID, VN), Forex (GB), Indices (GB), Crypto (BA), Future(US, HK, CN), Funds (US)
codestring
Product code

Response Parameters

codenumber
Response code
msgstring
Response description
dataarray(object)
Response result
cstring
Product code
nstring
Product name
tstring
Type such as stock | forex | indices | crypto | future | fund
estring
Exchange

Code Examples

import requests

url = "https://api.itick.org/symbol/list?type=stock&region=hk&code=700"

headers = {
"accept": "application/json"
"token": "Your Token"
}

response = requests.get(url, headers=headers)

print(response.text)

Query URL

GET
https://api.itick.org/symbol/list?type=stock&region=HK&code=700

Response Result

{
  "code": 0,
  "msg": "ok",
  "data": [
    {
      "c": "700",
      "n": "騰訊控股",
      "t": "stock",
      "e": "HKEX",
      "s": null,
      "l": "tencent"
    }
  ]
}