Stock IPO Information API Interface New Stock Issuance and Listing Data Inquiry free stock APIs REST API Provide professional stock IPO information API interface, covering global market data including A-shares, US stocks, and Hong Kong stocks. Obtain real-time information on new stock subscription codes, issue prices, winning rates, listing dates, fundraising amounts, and key information from prospectuses to assist your new stock subscription strategies and market research.

Please select

Stock IPO

GET
/stock/ipo

Request Parameters

typeenumRequired
upcoming
Type (upcoming - stocks about to be listed, recent - recently listed stocks)
regionenumRequired
Hong Kong
Market code, supports HK(Hong Kong)、SH(Shanghai)、SZ(Shenzhen)、US(US stocks)、SG(Singapore)、JP(Japan)、TW(Taiwan)、IN(India)、TH(Thailand)、DE(Germany)、MX(Mexico)、MY(Malaysia)、TR(Turkey)、ES(Spain)、NL(Netherlands)、GB(Great Britain)etc.

Response Parameters

codenumber
Response code
msgstring
Response description
dataobject
Response result
dtlong
Listing date, timestamp accurate to milliseconds
cnstring
Stock company name
scstring
Stock code
exstring
Exchange name
mcstring
Market capitalization
prstring
Price
ctstring
Country code

Code Examples

import requests

url = "https://api.itick.io/stock/ipo?type=upcoming&region=HK"

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

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

print(response.text)

Query URL

GET
https://api.itick.io/stock/ipo?type=upcoming&region=HK

Response Result

{
  "code": 0,
  "msg": "ok",
  "data": {
    "content": [
      {
        "dt": 1755820800000,
        "cn": "Picard Medical Inc",
        "sc": "PMI",
        "ex": "NYSE",
        "mc": "19.1M",
        "pr": "3.50-4.50",
        "ct": "US"
      },
      {
        "dt": 1755734400000,
        "cn": "Elite Express Holding Inc",
        "sc": "ETS",
        "ex": "NASDAQ",
        "mc": "16.0M",
        "pr": "4.00",
        "ct": "US"
      }
    ],
    "page": 0,
    "totalElements": 28,
    "totalPages": 14,
    "last": false,
    "size": 2
  }
}