Skip to content

IPO Info List

This endpoint retrieves a paginated list of IPO (Initial Public Offering) subscription information, including stock details, pricing, subscription periods, and related fees.

HTTP Request

bash
GET /market/v1/ipos

Request Parameters

NameTypeRequiredDescription
pageINTNoPage number, minimum 1, default is 1.
page_sizeINTNoNumber of records per page, default is 10, max limit is 100.
marketENUMNoMarket code. See supported values in the market enum definition.
product_codeSTRINGNoStock code to filter by specific IPO.

Example cURL Request

bash
curl --location --request GET '{$base_url}/market/v1/ipos?page=1&page_size=10&market=hkex' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'X-API-Signature: YOUR_GENERATED_SIGNATURE' \
--header 'X-API-Timestamp: 1746774142003'

Response Fields

FieldTypeDescription
idSTRINGUnique subscription ID
marketENUMMarket code. See supported values in the market enum definition.
product_codeSTRINGStock code
nameSTRINGStock name
name_big5STRINGStock name in Traditional Chinese
name_gbSTRINGStock name in Simplified Chinese
currencySTRINGSubscription currency
industrySTRINGIndustry
sponsorSTRINGSponsor
issued_sharesDECIMALNumber of issued shares
min_issue_priceDECIMALMinimum issue price
max_issue_priceDECIMALMaximum issue price
allot_priceDECIMALAllotment price
start_timeLONGSubscription start time (UNIX timestamp)
close_timeLONGSubscription close time for cash (UNIX timestamp)
margin_close_timeLONGSubscription close time for margin (UNIX timestamp)
close_time_eipoLONGWeb subscription close time (UNIX timestamp)
allot_dateLONGAllotment date (UNIX timestamp)
listing_dateLONGListing date (UNIX timestamp)
chargeDECIMALSubscription fee
loan_chargeDECIMALMargin financing additional fee
max_margin_ratioDECIMALMaximum margin financing loan ratio
other_loan_ratioDECIMALOther allowed loan ratio
waive_web_chargeBOOLEANWhether web subscription fee is waived
interest_rateDECIMALMargin loan interest rate
interest_dayINTNumber of interest accrual days
susp_margin_loanBOOLEANWhether margin subscription is allowed
eipoBOOLEANWhether web subscription is enabled
allow_web_cancelBOOLEANWhether web cancellation is allowed
info_urlSTRINGIPO prospectus PDF download URL
other_info_urlSTRINGCompany official website
remarkSTRINGRemarks
create_timeLONGCreation time (UNIX timestamp)
update_timeLONGLast update time (UNIX timestamp)
quantity_optionsARRAYSubscription quantity and corresponding amount options

quantity_options fields:

FieldTypeDescription
qtyINTSubscription quantity
amountDECIMALRequired amount for the quantity

Successful Response Example

json
{
  "code": 0,
  "data": {
    "total_records": 1,
    "page": 1,
    "page_size": 10,
    "ipos": [
      {
        "id": "20261110105956-HKEX:09999",
        "market": "hkex",
        "product_code": "09999",
        "name": "EXAMPLE CORP",
        "name_big5": "範例公司",
        "name_gb": "范例公司",
        "currency": "HKD",
        "industry": "Technology",
        "sponsor": "Example Securities",
        "issued_shares": 100000000,
        "min_issue_price": 10.00,
        "max_issue_price": 12.00,
        "allot_price": 0,
        "start_time": 1746774142,
        "close_time": 1747378942,
        "margin_close_time": 1747292542,
        "close_time_eipo": 1747378942,
        "allot_date": 1747983742,
        "listing_date": 1748070142,
        "charge": 50.00,
        "loan_charge": 100.00,
        "max_margin_ratio": 0.9,
        "other_loan_ratio": 0,
        "waive_web_charge": false,
        "interest_rate": 0.038,
        "interest_day": 7,
        "susp_margin_loan": false,
        "eipo": true,
        "allow_web_cancel": true,
        "info_url": "https://example.com/ipo/prospectus.pdf",
        "other_info_url": "https://example.com",
        "remark": "",
        "create_time": 1746774142,
        "update_time": 1746774142,
        "quantity_options": [
          { "qty": 1000, "amount": 12000.00 },
          { "qty": 2000, "amount": 24000.00 }
        ]
      }
    ]
  }
}

Error Example

json
{
  "code": 500,
  "message": "Internal Service Error",
  "details": ""
}