Request an HK option quote¶
RequestHkOptionQuote sends an explicit market-maker inquiry for an eligible HK option. The response acknowledges the request; it does not contain a quote, quote ID or order.
This extension is disabled by default and has not been verified against the live backend. It requires qot:read and HK market access. Account permissions, trading unlock and an account ID are not required.
| Field | Required | Meaning |
|---|---|---|
stock_id |
Yes | HK option stock ID, from 80000000 through 99999999 |
side |
Yes | both, buy or sell |
quantity |
Yes | Integer text from 1 to 999999999; an optional leading + and leading zeros are preserved after surrounding whitespace is trimmed |
extension_version |
Yes | 1 |
This endpoint is currently unavailable for moomoo profiles. The main broker list must include Hong Kong or Airstar, with LV1 or LV2 HK option rights; BMP is not supported. The service may fetch option metadata using its current configuration. Current option rights, product support and source availability are checked before sending. Requests cannot override the account, broker, route, symbol or exchange.
- REST:
POST /api/request-hk-option-quote - MCP:
futu_request_hk_option_quote(c2s_json); configure--opend-rest-url - CLI:
futucli request-hk-option-quote --c2s-json '{"stock_id":80000000,"side":"both","quantity":"+001","extension_version":1}' - Native/gRPC protocol ID:
0x7F100052
ret_type=0 means a successful ACK. s2c.result preserves the signed result and s2c.err_msg preserves the message when present, including an empty string. An absent or malformed ACK fails without inventing a successful payload. Response headers and credentials are never exposed. CLI prints the full response before a nonzero exit; MCP retains failure ACK JSON.
Every explicit call is independent: there is no idempotency deduplication or automatic retry. Cancellation before sending prevents the inquiry. After sending, cancellation, timeout or disconnect can leave the ACK unknown; none proves the inquiry was withdrawn. A subsequent quote is not causally attributed to this ACK.