Tokenized Mint (TRADE)
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).
Tokenized Mint (TRADE) › Authorization
Tokenized Mint (TRADE) › Request Weight
This endpoint consumes IP-based request weight. Heavier endpoints consume more of your IP rate limit capacity.
Learn more in the Rate limits section.
Headers
X-MBX-APIKEYAn API Key is required to access this endpoint and must be included in the request headers. To create an API Key, refer to: https://www.binance.com/en/support/faq/detail/360002502072.
Query Parameters
underlyingAssetUnderlying US-equity ticker, e.g. AAPL, TSLA. Resolved against the active-symbol list; unknown tickers return -26004. The target tokenized asset is looked up from this field via /market/tokenized-assets.
underlyingAssetAmountQuantity of the underlying asset to mint from. Must be > 0.
timestampTimestamp in milliseconds.
clientOrderIdClient order id for idempotency. Format ^[a-zA-Z0-9-_]{32,36}$. Auto-generated when omitted.
recvWindowThe value cannot be greater than 60000.
Tokenized Mint (TRADE) › Responses
Tokenized Mint
issuerRequestIdServer-assigned convert request id. Use it to poll /tokenized/convert-status.
statusConvert status code: P = processing, S = success, F = failed.
Tokenized Redeem (TRADE)
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: 50 requests / min (UID).
Tokenized Redeem (TRADE) › Authorization
Tokenized Redeem (TRADE) › Request Weight
This endpoint consumes IP-based request weight. Heavier endpoints consume more of your IP rate limit capacity.
Learn more in the Rate limits section.
Headers
X-MBX-APIKEYAn API Key is required to access this endpoint and must be included in the request headers. To create an API Key, refer to: https://www.binance.com/en/support/faq/detail/360002502072.
Query Parameters
tokenizedAssetTokenized asset to redeem, e.g. AAPLB. Not a US-equity ticker — this is the on-chain tokenized asset identifier. Unknown asset returns -1102 (the message currently says the parameter was empty/malformed, but it was in fact sent — it is simply unknown). The target underlying ticker is looked up from this field via /market/tokenized-assets.
tokenizedAssetAmountQuantity of the tokenized asset to redeem. Must be > 0.
timestampTimestamp in milliseconds.
clientOrderIdClient order id for idempotency. Format ^[a-zA-Z0-9-_]{32,36}$. Auto-generated when omitted.
recvWindowThe value cannot be greater than 60000.
Tokenized Redeem (TRADE) › Responses
Tokenized Redeem
issuerRequestIdServer-assigned convert request id. Use it to poll /tokenized/convert-status.
statusConvert status code: P = processing, S = success, F = failed.
Tokenized Convert Status (USER_DATA)
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).
Tokenized Convert Status (USER_DATA) › Authorization
Tokenized Convert Status (USER_DATA) › Request Weight
This endpoint consumes IP-based request weight. Heavier endpoints consume more of your IP rate limit capacity.
Learn more in the Rate limits section.
Headers
X-MBX-APIKEYAn API Key is required to access this endpoint and must be included in the request headers. To create an API Key, refer to: https://www.binance.com/en/support/faq/detail/360002502072.
Query Parameters
issuerRequestIdConvert request id returned by /tokenized/mint or /redeem.
convertTypeMINT or REDEEM.
timestampTimestamp in milliseconds.
recvWindowThe value cannot be greater than 60000.
Tokenized Convert Status (USER_DATA) › Responses
Tokenized Convert Status
underlyingAssetUnderlying US-equity ticker, e.g. AAPL.
underlyingAssetAmountQuantity of the underlying asset involved.
tokenizedAssetTokenized asset, e.g. AAPLB.
tokenizedAssetAmountQuantity of the tokenized asset involved.
issuerRequestIdEchoes the requested id.
convertTypeMINT or REDEEM.
statusConvert status: P = processing, S = success, F = failed.
createdAtCreation time (ms epoch).
updatedAtLast update time (ms epoch).
Tokenized Convert History (USER_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.
Tokenized Convert History (USER_DATA) › Authorization
Tokenized Convert History (USER_DATA) › Request Weight
This endpoint consumes IP-based request weight. Heavier endpoints consume more of your IP rate limit capacity.
Learn more in the Rate limits section.
Headers
X-MBX-APIKEYAn API Key is required to access this endpoint and must be included in the request headers. To create an API Key, refer to: https://www.binance.com/en/support/faq/detail/360002502072.
Query Parameters
timestampTimestamp in milliseconds.
startTimeStart time (ms epoch).
endTimeEnd time (ms epoch).
lastIdLast record id from the previous page. Omit (or leave unset) to fetch the first page.
sizePage size. Default 20, max 100.
recvWindowThe value cannot be greater than 60000.
Tokenized Convert History (USER_DATA) › Responses
Tokenized Convert History
Convert history rows on this page. Empty array if nothing matches.
underlyingAssetUnderlying US-equity ticker, e.g. AAPL.
underlyingAssetAmountQuantity of the underlying asset involved.
tokenizedAssetTokenized asset, e.g. AAPLB.
tokenizedAssetAmountQuantity of the tokenized asset involved.
issuerRequestIdConvert request id.
convertTypeMINT or REDEEM.
statusConvert status: P = processing, S = success, F = failed.
createdAtCreation time (ms epoch).
updatedAtLast update time (ms epoch).
hasMoretrue when more pages exist — pass nextLastId as lastId on the next request.
nextLastIdPass this value as lastId on the next request to get the following page.