Skip to main content

GET /static_info

Interface Description

This interface only supports batch requests for partial basic information of US stocks, Hong Kong stocks, and A-share products.

Request Frequency

PlanIndividual RequestRequesting Multiple HTTP Interfaces at the Same Time
FreeOne request every 10 seconds1. Only one interface can be requested every 10 seconds.
2. When requesting multiple interfaces, note that the /batch-kline interface requires a 10-second interval.
3. All interfaces combined: maximum 10 requests per minute (one every 6 seconds).
4. Maximum 1,000 requests per day; usage resumes after midnight the next day if exceeded.
BasicOne request per second1. Only one interface can be requested in the same second.
2. When requesting multiple interfaces, note that the /batch-kline interface requires a 3-second interval.
3. All interfaces combined: maximum 60 requests per minute (one per second).
4. Maximum 86,400 requests per day; usage resumes after midnight the next day if exceeded.
PremiumUp to 10 requests per second1. All interfaces combined: up to 10 requests per second.
2. When requesting multiple interfaces, note that the /batch-kline interface requires a 2-second interval.
3. All interfaces combined: maximum 600 requests per minute (10 per second).
4. Maximum 864,000 requests per day; usage resumes after midnight the next day if exceeded.
ProfessionalUp to 20 requests per second1. All interfaces combined: up to 20 requests per second.
2. When requesting multiple interfaces, note that the /batch-kline interface requires a 1-second interval.
3. All interfaces combined: maximum 1,200 requests per minute (20 per second).
4. Maximum 1,728,000 requests per day; usage resumes after midnight the next day if exceeded.
All Hong Kong StocksUp to 20 requests per second1. All interfaces combined: up to 20 requests per second.
2. When requesting multiple interfaces, note that the /batch-kline interface requires a 1-second interval.
3. All interfaces combined: maximum 1,200 requests per minute (20 per second).
4. Maximum 1,728,000 requests per day; usage resumes after midnight the next day if exceeded.
All A SharesUp to 20 requests per second1. All interfaces combined: up to 20 requests per second.
2. When requesting multiple interfaces, note that the /batch-kline interface requires a 1-second interval.
3. All interfaces combined: maximum 1,200 requests per minute (20 per second).
4. Maximum 1,728,000 requests per day; usage resumes after midnight the next day if exceeded.
All US StocksUp to 20 requests per second1. All interfaces combined: up to 20 requests per second.
2. When requesting multiple interfaces, note that the /batch-kline interface requires a 1-second interval.
3. All interfaces combined: maximum 1,200 requests per minute (20 per second).
4. Maximum 1,728,000 requests per day; usage resumes after midnight the next day if exceeded.

Interface Limitations

  1. Be sure to read: HTTP Interface Restrictions
  2. Be sure to read: Error Code Description

API Endpoint

  • Base Path: /quote-stock-b-api/static_info
  • Full URL: https://quote.alltick.co/quote-stock-b-api/static_info

Request Example

When sending a query request, you must include the method name and token information. Example:
https://quote.alltick.co/quote-stock-b-api/static_info?token=your_token&query=queryData

Request Parameters

NamePositionTypeRequiredDescription
tokenquerystringNo
queryquerystringNoSee the query request parameter description.
URL-encode the following JSON and assign it to the query string parameter query in the URL.
{
  "trace": "edd5df80-df7f-4acf-8f67-68fd2f096426",
  "data": {
    "symbol_list": [
      {
        "code": "857.HK"
      },
      {
        "code": "UNH.US"
      }
    ]
  }
}

Query Request Parameters

NameTypeRequiredDescription
tracestringYes
dataobjectYes
» symbol_list[object]Yes
»» codestringNoCode: [Click the code list]
Note: The code value must match the case of the code in the product list.

Response Example

{
  "ret": 200,
  "msg": "ok",
  "trace": "edd5df80-df7f-4acf-8f67-68fd2f096426",
  "data": {
    "static_info_list": [
      {
        "board": "HKEquity",
        "bps": "101.7577888985738336",
        "circulating_shares": "9267359712",
        "currency": "HKD",
        "dividend_yield": "3.4558141358352833",
        "eps": "13.7190213011686429",
        "eps_ttm": "18.0567016900844671",
        "exchange": "SEHK",
        "hk_shares": "9267359712",
        "lot_size": "100",
        "name_cn": "Tencent Holdings",
        "name_en": "TENCENT",
        "name_hk": "Tencent Holdings",
        "symbol": "700.HK",
        "total_shares": "9267359712"
      }
    ]
  }
}

Response Result

Status CodeStatus MeaningDescriptionData Model
200OKOKInline

Response Data Structure

NameTypeRequiredDescription
» retintegertrueReturn code
» msgstringtrueMessage corresponding to the return code
» tracestringtrueRequest trace
» dataobjecttrue
»» static_info_list[object]true
»»» boardstringfalseStock board
»»» bpsstringfalseBook value per share
»»» circulating_sharesstringfalseCirculating shares
»»» currencystringfalseTrading currency
»»» dividend_yieldstringfalseDividend yield
»»» epsstringfalseEarnings per share
»»» eps_ttmstringfalseEarnings per share (TTM)
»»» exchangestringfalseExchange to which the product belongs
»»» hk_sharesstringfalseHong Kong stock shares (Hong Kong stocks only)
»»» lot_sizestringfalseShares per lot
»»» name_cnstringfalseSimplified Chinese product name
»»» name_enstringfalseEnglish product name
»»» name_hkstringfalseTraditional Chinese product name
»»» symbolstringfalseProduct code
»»» total_sharesstringfalseTotal shares

AllTick Website

Official website: https://alltick.co/

Interface Debug

Open GET /static_info Debug Module

Use the debuggable module to fill in parameters and send requests.