Get Aggregator Supported Chains
Return blockchain networks supported by the DEX aggregator. The supported list is dynamically configured server-side and may change over time.
Pass binanceChainId to filter to a single chain; omit it to get the full list.
Get Aggregator Supported Chains › Authorization
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Query Parameters
binanceChainIdOptional chain identifier (e.g. "1"=Ethereum, "56"=BSC, "CT_501"=Solana). When set, only that chain is returned.
Get Aggregator Supported Chains › Responses
Supported chains returned successfully.
codeBusiness status code. 0 indicates success; any non-zero value indicates a business error.
msgStatus description message.
List of supported blockchain networks.
timestampServer response timestamp in milliseconds.
successConvenience flag derived from code == 0.
Get ERC-20 Approve Transaction
Build the on-chain transaction data needed to approve the DEX router to spend a user's ERC-20 token before a swap. Calldata is encoded per the ERC-20 ABI standard (approve() selector + spender + amount).
Get ERC-20 Approve Transaction › Authorization
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Query Parameters
binanceChainIdUnique chain identifier (e.g. "1"=Ethereum, "56"=BSC).
tokenContractAddressERC-20 token contract address to approve (0x + 40 hex chars).
approveAmountApproval amount in the token's smallest unit (positive integer string). Example "1000000" = 1 USDT (decimals=6).
vendorRFQ vendor name. Required for equity / RWA tokens (Ondo, BStock); pass the vendorName from the /quote response (e.g. InchFusion, CowSwap, PcsXRfq). When provided, the backend returns approve calldata targeting the vendor-specific spender contract (e.g. 1inch Router, PcsX Permit2, CowSwap VaultRelayer) instead of the default DEX router.
For regular (non-RWA) tokens, this parameter is optional. If omitted, the backend uses the standard DEX router. If a valid RFQ vendor is passed, the backend resolves that vendor's spender — used when buying Ondo/BStock with a stablecoin, where the from-token (e.g. USDT) itself is not an RFQ token but must be approved to the RFQ vendor's router.
Get ERC-20 Approve Transaction › Responses
Approve transaction data returned successfully.
codemsgApprove transaction(s) to submit before the swap.
timestampsuccessGet Aggregated Quote
Query multiple DEX vendors in parallel and return the priced routes sorted by toTokenAmount (descending). Each route carries an independent quoteId (TTL ~30s) that the swap endpoint consumes to construct calldata for the chosen route.
Get Aggregated Quote › Authorization
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Query Parameters
binanceChainIdUnique chain identifier (e.g. "56"=BSC, "1"=Ethereum, "CT_501"=Solana).
amountSell-token amount in the token's smallest unit (positive integer string, no decimals). Example "1000000" = 1 USDT (decimals=6).
fromTokenAddressSell-token contract address. EVM chains require 0x + 40 hex chars; non-EVM chains use the chain's native address format.
toTokenAddressBuy-token contract address. Must differ from fromTokenAddress.
vendorOptional vendor selector. When provided, only the specified vendor is queried through the single-vendor fast path; the request bypasses the multi-vendor dual-window, early-return, and price-check logic. Values are case-sensitive and must be one of LiquidMesh, Pancake, or Jupiter. The vendor must also support the requested chain. An unsupported value or unavailable vendor/chain returns PARAM_ERROR (40001). When omitted, the API queries all applicable vendors in parallel and returns the aggregated routes.
userWalletAddressUser wallet address. Required when quoting RFQ routes (equity / RWA tokens such as Ondo and BStock). This address is used as the receiver in the RFQ order and must match the wallet that signs rfq.typedDataToSign in the subsequent /swap call.
feePercentCustom fee (referral fee / Add Fee) percentage as a decimal string. Must be paired with feeSource — either both present or both absent.
Range by chain: (0, 5] for EVM chains (BSC, Ethereum, Base, etc.) and (0, 10] for Solana (CT_501) — greater than 0, up to the chain-specific maximum inclusive, max 2 decimal places. "1.5" means 1.5%. Values exceeding 2 decimal places are rejected with INVALID_FEE_PERCENT (40466).
four.meme tokens are not supported — do not pass fee parameters when either side of the pair is a four.meme token.
feeSourceFee deduction direction. FROM_TOKEN = deduct the fee from the sell token (the amount passed to the DEX is reduced to a net amount); TO_TOKEN = deduct the fee from the buy-token output (the user's actual received amount is reduced). Must be paired with feePercent.
Get Aggregated Quote › Responses
Quote routes returned successfully.
codemsgOne route per vendor that returned a valid quote, sorted by toTokenAmount descending.
timestampsuccessBuild Swap Transaction
Build the on-chain swap calldata for a previously quoted route. The request is matched against the cached quote by quoteId (TTL ~30s); if the entry has expired, QUOTE_EXPIRED (40401) is returned, and if the request parameters disagree with the cached quote, SWAP_QUOTE_MISMATCH (40462) is returned.
Build Swap Transaction › Authorization
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Query Parameters
binanceChainIdUnique chain identifier (e.g. "56"=BSC, "1"=Ethereum, "CT_501"=Solana).
amountSell-token amount in the token's smallest unit (positive integer string, no decimals).
fromTokenAddressSell-token contract address.
toTokenAddressBuy-token contract address.
userWalletAddressUser wallet address (transaction sender).
quoteIdquoteId returned from /quote for the route to execute. TTL ~30s; expired entries return QUOTE_EXPIRED (40401).
slippagePercentMaximum slippage tolerance as a percentage string. Required unless autoSlippage=true.
Range by chain:
- EVM chains (BSC, Ethereum, Base, etc.):
0to100(inclusive) - Solana (
CT_501):0to less than100(i.e.< 100)
Range by vendor:
- 1inch, PancakeSwap:
0to50(values above 50 are rejected) - LiFi, LiquidMesh:
0to100(EVM) or0to< 100(Solana) - Jupiter (Solana):
0to less than100; the value is converted to basis points (slippageBps = ceil(slippagePercent × 100)) and applied to the on-chain swap
"0.5" means 0.5% maximum slippage. When autoSlippage=true this field is overridden by the auto-computed value.
approveTransactionWhen "true", signatureData includes the spender address and approve calldata so the client can submit it before the swap. Defaults to false.
approveAmountOverride approve amount (smallest unit, positive integer string). Defaults to the swap amount.
gasLimitGas limit override (positive integer string). EVM only.
gasLevelGas price tier. Defaults to "average".
priceImpactProtectionPercentMaximum allowed price impact percentage (0–100). Defaults to 90; set to 100 to disable.
autoSlippageWhen "true", slippage is auto-derived from market data and overrides slippagePercent. Either slippagePercent or autoSlippage=true must be provided — omitting both returns a parameter error. Defaults to "false".
maxAutoSlippagePercentCap on auto-derived slippage (only applies when autoSlippage=true).
computeUnitLimitSolana only — maximum compute units the transaction may consume (analogous to EVM gasLimit). Applies only when binanceChainId=CT_501.
computeUnitPriceSolana only — priority fee per compute unit (micro-lamports), analogous to EVM gasPrice. When omitted, the platform computes a value dynamically. Applies only when binanceChainId=CT_501.
tipsSolana only — Jito tips in SOL for MEV protection. Valid range [0.000000001, 2] (minimum 1 lamport). When specified, it is recommended to set computeUnitPrice=0. Applies only when binanceChainId=CT_501.
feePercentCustom fee (referral fee / Add Fee) percentage as a decimal string. Must be paired with exactly one of fromTokenReferrerWalletAddress or toTokenReferrerWalletAddress (the two referrer addresses are mutually exclusive).
Range by chain: (0, 5] for EVM chains (BSC, Ethereum, Base, etc.) and (0, 10] for Solana (CT_501) — greater than 0, up to the chain-specific maximum inclusive, max 2 decimal places. "1.5" means 1.5%. Values exceeding 2 decimal places are rejected with INVALID_FEE_PERCENT (40466).
four.meme tokens are not supported — do not pass fee parameters when either side of the pair is a four.meme token.
fromTokenReferrerWalletAddressWallet address that receives the fee deducted from the sell token (FROM_TOKEN direction). Mutually exclusive with toTokenReferrerWalletAddress — providing both returns CONFLICT_REFERRER_PARAMS (40468). Address format depends on the chain: EVM chains require 0x + 40 hex chars; Solana (CT_501) requires a Base58 pubkey. An invalid format returns INVALID_REFERRER_ADDRESS (40467). Must be paired with feePercent.
toTokenReferrerWalletAddressWallet address that receives the fee deducted from the buy-token output (TO_TOKEN direction). Mutually exclusive with fromTokenReferrerWalletAddress — providing both returns CONFLICT_REFERRER_PARAMS (40468). Address format depends on the chain: EVM chains require 0x + 40 hex chars; Solana (CT_501) requires a Base58 pubkey. An invalid format returns INVALID_REFERRER_ADDRESS (40467). Must be paired with feePercent. On Solana, the referrer must already be activated (funded with some SOL) or the request returns REFERRER_NOT_ACTIVATED (40469).
Build Swap Transaction › Responses
Swap transaction data returned successfully.
codemsgtimestampsuccessQuote and Build Swap Transaction (Flash API)
Combines quoting and swap-transaction construction into a single call. Unlike the two-step /quote + /swap flow, this endpoint does not require a prior /quote call or a quoteId — it returns the executable calldata / swapTransaction directly, eliminating one HTTP round-trip.
Use this endpoint for latency-sensitive trading when the vendor is known upfront. The response shape is identical to /swap, so clients can reuse the same response parsing logic for both endpoints.
Quote and Build Swap Transaction (Flash API) › Authorization
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Query Parameters
binanceChainIdUnique chain identifier (e.g. "56"=BSC, "1"=Ethereum, "CT_501"=Solana).
amountSell-token amount in the token's smallest unit (positive integer string, no decimals).
fromTokenAddressSell-token contract address.
toTokenAddressBuy-token contract address.
userWalletAddressUser wallet address (transaction sender). For Solana, a Base58 system-account address with sufficient SOL for gas.
vendorSwap vendor to use for this request. Required — case-sensitive; must match one of the enum values. Any other value returns PARAM_ERROR (40001). For multi-vendor aggregation, use /swap with a quoteId instead.
slippagePercentMaximum slippage tolerance as a percentage string. Required unless autoSlippage=true.
Range by chain:
- EVM chains (BSC, Ethereum, Base, etc.):
0to100(inclusive) - Solana (
CT_501):0to less than100(i.e.< 100)
"0.5" means 0.5% maximum slippage. When autoSlippage=true this field is overridden by the auto-computed value.
approveTransactionWhen "true", signatureData includes the spender address and approve calldata so the client can submit it before the swap. Defaults to false.
approveAmountOverride approve amount (smallest unit, positive integer string). Defaults to the swap amount.
gasLimitGas limit override (positive integer string). EVM only.
gasLevelGas price tier. Defaults to "average".
priceImpactProtectionPercentMaximum allowed price impact percentage (0–100). Defaults to 90; set to 100 to disable.
autoSlippageWhen "true", slippage is auto-derived from market data and overrides slippagePercent. Either slippagePercent or autoSlippage=true must be provided — omitting both returns a parameter error. Defaults to "false".
maxAutoSlippagePercentCap on auto-derived slippage (only applies when autoSlippage=true).
computeUnitLimitSolana only — maximum compute units the transaction may consume (analogous to EVM gasLimit). Applies only when binanceChainId=CT_501.
computeUnitPriceSolana only — priority fee per compute unit (micro-lamports), analogous to EVM gasPrice. When omitted, the platform computes a value dynamically. Applies only when binanceChainId=CT_501.
tipsSolana only — Jito tips in SOL for MEV protection. Valid range [0.000000001, 2] (minimum 1 lamport). When specified, it is recommended to set computeUnitPrice=0. Applies only when binanceChainId=CT_501.
feePercentCustom fee (referral fee / Add Fee) percentage as a decimal string. Must be paired with exactly one of fromTokenReferrerWalletAddress or toTokenReferrerWalletAddress (the two referrer addresses are mutually exclusive).
Range by chain: (0, 5] for EVM chains (BSC, Ethereum, Base, etc.) and (0, 10] for Solana (CT_501) — greater than 0, up to the chain-specific maximum inclusive, max 2 decimal places. "1.5" means 1.5%. Values exceeding 2 decimal places are rejected with INVALID_FEE_PERCENT (40466).
four.meme tokens are not supported — do not pass fee parameters when either side of the pair is a four.meme token.
fromTokenReferrerWalletAddressWallet address that receives the fee deducted from the sell token (FROM_TOKEN direction). Mutually exclusive with toTokenReferrerWalletAddress — providing both returns CONFLICT_REFERRER_PARAMS (40468). Address format depends on the chain: EVM chains require 0x + 40 hex chars; Solana (CT_501) requires a Base58 pubkey. An invalid format returns INVALID_REFERRER_ADDRESS (40467). Must be paired with feePercent.
toTokenReferrerWalletAddressWallet address that receives the fee deducted from the buy-token output (TO_TOKEN direction). Mutually exclusive with fromTokenReferrerWalletAddress — providing both returns CONFLICT_REFERRER_PARAMS (40468). Address format depends on the chain: EVM chains require 0x + 40 hex chars; Solana (CT_501) requires a Base58 pubkey. An invalid format returns INVALID_REFERRER_ADDRESS (40467). Must be paired with feePercent. On Solana, the referrer must already be activated (funded with some SOL) or the request returns REFERRER_NOT_ACTIVATED (40469).
Quote and Build Swap Transaction (Flash API) › Responses
Swap transaction data returned successfully.
codemsgtimestampsuccessBuild Solana Swap Instructions
Solana-only counterpart to /swap. Shares the full quote → route → vendor buildSwapTx → priceImpact → minReceive → instruction-assembly pipeline; the only difference is the response: instead of returning a signed-and-serialized base64 transaction, this endpoint returns the uncompiled instruction list plus the address-lookup-table (ALT) address list, leaving v0-transaction compilation, signing, and submission to the caller.
Use this when the caller needs to:
-
prepend / append their own instructions (e.g. fee splitting, custom logging) before signing;
-
reuse the platform-curated route, slippage, PS-variant rewriting, ALT injection, ComputeBudget overwrite, and ATA batching while still controlling the final wire format.
Only supports binanceChainId=CT_501 (Solana). Other chains return CHAIN_NOT_SUPPORTED (40411). Parameters mirror the Solana subset of /swap (no EVM-only approveTransaction / approveAmount / gasLimit). Supports the custom-fee (Add Fee / referral fee) parameters (feePercent + fromTokenReferrerWalletAddress / toTokenReferrerWalletAddress), with the same semantics as /swap — the fee instructions are injected into the returned uncompiled instruction list.
Build Solana Swap Instructions › Authorization
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Query Parameters
binanceChainIdChain identifier. Only CT_501 (Solana) is accepted; other values return CHAIN_NOT_SUPPORTED (40411).
amountSell-token amount in the token's smallest unit (positive integer string, no decimals).
fromTokenAddressSell-token mint address (Solana Base58, case-sensitive).
toTokenAddressBuy-token mint address (Solana Base58, case-sensitive).
slippagePercentMaximum slippage as a percentage. Solana range 0 to less than 100. "0.5" means 0.5%.
userWalletAddressUser wallet address (Solana Base58); becomes the v0 transaction's feePayer.
quoteIdquoteId returned from /quote for the route to execute. TTL ~30s; expired entries return QUOTE_EXPIRED (40401).
priceImpactProtectionPercentMaximum allowed price impact percentage (0–100). Defaults to 90; set to 100 to disable.
autoSlippageWhen "true", slippage is auto-derived from market data and overrides slippagePercent. Defaults to false.
maxAutoSlippagePercentCap on auto-derived slippage (only applies when autoSlippage=true).
computeUnitLimitMaximum compute units the transaction may consume (analogous to EVM gasLimit). Defaults to the platform value when omitted.
computeUnitPricePriority fee per compute unit (micro-lamports). When omitted, the platform computes a value either from the gasLevel tier or from chain-side defaults.
gasLevelPriority-fee tier; consulted only when computeUnitPrice is omitted. Defaults to "average".
tipsJito tips in SOL for MEV protection. Valid range [0.000000001, 2] (minimum 1 lamport). When specified, it is recommended to set computeUnitPrice=0. The platform picks one of Jito's tip accounts at random per request.
feePercentCustom fee (referral fee / Add Fee) percentage as a decimal string. Must be paired with exactly one of fromTokenReferrerWalletAddress or toTokenReferrerWalletAddress (the two referrer addresses are mutually exclusive). Same semantics as /swap.
Range (Solana): (0, 10] — greater than 0, up to 10 inclusive, max 2 decimal places. "1.5" means 1.5%. Values exceeding 2 decimal places are rejected with INVALID_FEE_PERCENT (40466).
four.meme tokens are not supported — do not pass fee parameters when either side of the pair is a four.meme token.
fromTokenReferrerWalletAddressWallet address that receives the fee deducted from the sell token (FROM_TOKEN direction). Mutually exclusive with toTokenReferrerWalletAddress — providing both returns CONFLICT_REFERRER_PARAMS (40468). Solana requires a Base58 pubkey; an invalid format returns INVALID_REFERRER_ADDRESS (40467). Must be paired with feePercent.
toTokenReferrerWalletAddressWallet address that receives the fee deducted from the buy-token output (TO_TOKEN direction). Mutually exclusive with fromTokenReferrerWalletAddress — providing both returns CONFLICT_REFERRER_PARAMS (40468). Solana requires a Base58 pubkey; an invalid format returns INVALID_REFERRER_ADDRESS (40467). Must be paired with feePercent. The referrer must already be activated (funded with some SOL) or the request returns REFERRER_NOT_ACTIVATED (40469).
Build Solana Swap Instructions › Responses
Uncompiled Solana instruction list and ALT addresses returned successfully.
codemsgtimestampsuccessGet Transaction Status
Look up the on-chain status of a DEX swap by binanceChainId + txHash.
Response semantics:
-
Transaction not found:
dataisnull(not HTTP 404). -
Transaction failed:
status=failedwitherrorMsg; aggregator business fields (txType,dexRouter,fromTokenDetails,toTokenDetails) arenull. -
Transaction succeeded:
status=successwith full token details when an aggregator event is present.
Get Transaction Status › Authorization
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Query Parameters
binanceChainIdUnique chain identifier (e.g. "56"=BSC, "1"=Ethereum, "CT_501"=Solana).
txHashOn-chain transaction hash.
Get Transaction Status › Responses
Transaction details. data is null when no record is found.
codemsgdataTransaction details. Null when the transaction is not found in any source table.
timestampsuccessSubmit RFQ Order
Submit a signed RFQ order to the backend for on-chain settlement via the corresponding vendor relayer. Only used when executionMode=RFQ (equity / RWA tokens such as Ondo and BStock).
Flow: GET /quote → pick an RFQ route → GET /swap → sign rfq.typedDataToSign with EIP-712 (eth_signTypedData_v4) → call this endpoint → poll GET /order/{orderId} until FILLED or FAILED.
Idempotency: Submitting with the same requestId within 30 minutes returns the original result without re-calling the vendor. Use a new UUID for each distinct order; reuse the same UUID when retrying.
Submit RFQ Order › Authorization
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Submit RFQ Order › Request Body
requestIdIdempotency key (UUID v4). Within 30 minutes, re-submitting with the same requestId returns the original result without re-calling the vendor. Generate a new UUID for each new order; reuse the same UUID when retrying the same attempt.
userSignatureEIP-712 signature of rfq.typedDataToSign from the /swap response. Must be a hex string with 0x prefix (132 chars = 0x + 65 bytes). The signing wallet must match userWalletAddress used in /quote. The backend automatically corrects Ethereum v values 00/01 to 1b/1c.
vendorRFQ vendor name — must match rfq.vendor from the /swap response. The backend validates this against quoteId to prevent misrouted submissions.
quoteIdrfq.orderId from the /swap response. The backend uses this to look up the vendor and chain context required to forward the signed order.
signingSchemeSigning scheme from rfq.signingScheme in the /swap response. Optional — when omitted the backend infers the default per vendor.
Submit RFQ Order › Responses
RFQ order submitted successfully.
codemsgSubmitted order details.
timestampsuccessGet RFQ Order Status
Query the settlement status of an RFQ order by its platform orderId (returned by POST /order/submit). Poll this endpoint until status reaches a terminal state: FILLED (settled on-chain) or FAILED (settlement failed).
Get RFQ Order Status › Authorization
Path Parameters
orderIdPlatform order ID returned by POST /order/submit.
Headers
X-OC-APIKEYAPI Key issued by Binance Web3 API for authentication.
X-OC-TIMESTAMPCurrent UTC time in ISO 8601 format with milliseconds, e.g. 2026-05-11T10:08:57.715Z.
X-OC-SIGNRequest signature (Base64-encoded).
X-OC-RECV-WINDOWAllowed time deviation in milliseconds (default: 5000, max: 60000).
X-OC-NONCEUnique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.
Get RFQ Order Status › Responses
Order status returned successfully.
codemsgOrder status details.
timestampsuccess