Request parameters.
Cancel a single open order by its orderId.
Weight: 1
Security Type: TRADE
Request parameters.
Create a new stock user-data-stream listenKey, or renew an existing one. Calling this endpoint for the same user with an active listenKey extends its validity; if there is no active key, a new one is issued. Use the returned listenKey to subscribe to the stock user data stream.
Weight: 1
Security Type: USER_STREAM
Request parameters.
Query all unfinished (open) orders for the caller. No business parameters are needed — user identity is derived from the signature.
Weight: 1
Security Type: USER_DATA
Request parameters.
Returns a single order along with its trade execution list. Callers can only read their own orders — the user identity is derived from the signed request.
Weight: 1
Security Type: USER_DATA
Request parameters.
Paged order history for the caller. Filters by symbol, order type, side, status, and time range.
Weight: 1
Security Type: USER_DATA
Request parameters.
Paged equity trade (per-fill) history for the caller. Each row is one execution, not one order — a partially filled order produces multiple rows. Filters by symbol, side, specific orderId, and time range.
Weight: 1
Security Type: USER_DATA
Request parameters.
Returns current exchange trading rules and the list of tradable US-equity symbols. MARKET_DATA endpoint — requires an API key (X-MBX-APIKEY) but no signature. Response is served from a server-side cache.
Weight: 1
Security Type: MARKET_DATA
Request parameters.
Returns the latest best bid / best ask for a single US-equity ticker. The returned value is at most ~5 seconds stale. Returns an empty response body (not the literal null) when no quote is available for the supplied ticker (e.g. the ticker is unknown, halted, or de-listed).
Weight: 1
Security Type: MARKET_DATA
Request parameters.
Place a new equity order. Supports all combinations of LIMIT / MARKET × BUY / SELL. For LIMIT BUY orders the commission fee is automatically computed and reserved by the server at placement time — callers submit price and quantity only, no fee field is required.
Field combination matrix*
| Side | OrderType | Required | Forbidden | | ---- | --------- | -------- | --------- | | BUY | LIMIT | price, quantity, tradingSession | notional | | BUY | MARKET | notional | price, quantity, tradingSession | | SELL | LIMIT | price, quantity, tradingSession | notional | | SELL | MARKET | quantity | price, notional, tradingSession |
Fractional shares*: when quantity has a decimal component, or an order is placed by notional, it is treated as a fractional-share order. A fractional-share GTC order must be paired with tradingSession = EXTENDED or 24H.
Rate limit: 200 requests / min (UID).
Weight: 1
Security Type: TRADE
Request parameters.
Generic function to send a request.
The API endpoint to call.
HTTP method to use (GET, POST, DELETE, etc.).
Query parameters for the request.
Body parameters for the request.
A promise resolving to the response data object.
Generic function to send a signed request.
The API endpoint to call.
HTTP method to use (GET, POST, DELETE, etc.).
Query parameters for the request.
Body parameters for the request.
A promise resolving to the response data object.
Records the user's acknowledgement and acceptance of the US equity disclaimer. This must be completed before the account can access certain US equity trading features. The acceptance is tied to the account associated with the API key.
Weight: 1
Security Type: TRADE
Request parameters.
Returns the list of all tokenized assets currently available for mint / redeem, together with each asset's underlying equity symbol and conversion multiplier. MARKET_DATA endpoint — requires an API key (X-MBX-APIKEY) but no signature. Response is served from a server-side cache.
Weight: 1
Security Type: MARKET_DATA
Paged history of mint / redeem conversions for the caller. Cursor-style pagination — supply the nextLastId from the previous page's response to fetch the next page.
Weight: 1
Security Type: USER_DATA
Request parameters.
Query the current status of a single mint / redeem request by its issuerRequestId. Returns an empty object when no record matches (caller's ID scope only).
Weight: 1
Security Type: USER_DATA
Request parameters.
Mint a tokenized asset from an underlying equity holding. The caller's underlying equity (e.g. AAPL) is burned (or locked), and the corresponding tokenized asset (e.g. AAPLB) is credited. The tokenized asset is resolved server-side from underlyingAsset; callers only provide the underlying ticker and quantity. Mint is asynchronous: the endpoint returns an issuerRequestId immediately with a transient status; poll /tokenized/convert-status to observe the terminal state, or inspect /tokenized/history for the full record. Rate limit: 50 requests / min (UID).
Weight: 1
Security Type: TRADE
Request parameters.
Redeem a tokenized asset back into the underlying equity. The caller's tokenized asset (e.g. AAPLB) is burned, and the corresponding underlying equity (e.g. AAPL) is released. The underlying asset is resolved server-side from tokenizedAsset; callers only provide the tokenized asset and quantity. Redeem is asynchronous: the endpoint returns an issuerRequestId immediately with a transient status; poll /tokenized/convert-status to observe the terminal state, or inspect /tokenized/history for the full record. Rate limit: 200 requests / min (UID).
Weight: 1
Security Type: TRADE
Request parameters.
Cancel all open orders for the caller. No request body is required — the scope is all of the caller's open orders. The downstream service handles idempotency; to inspect per-order outcomes, query
/order/historyafter the call.Weight: 1
Security Type: TRADE