Preview the input/output amounts, fees, and slippage tolerance for an order.
Read-only relative to Fusion: hits /quote/receive only and does not
consume a quote_id or commit an order. Pair with POST /order:
surface this preview to the user, and on confirm pass the body plus
recommended_slippage_bps to /order.
The response carries:
quote — input/output token amounts, fees, and an
est_fill_seconds upper bound.recommended_slippage_bps — system-derived slippage tolerance
that clears Fusion’s current auction floor; pass back as
slippage_bps on /order so the build call validates against the
same floor the user was shown.auction_range_bps — worst-case bps gap between the auction
end amount and the reference quote amount. Use to surface a
thin-liquidity warning to the user.Documentation Index
Fetch the complete documentation index at: https://docs.compasslabs.ai/llms.txt
Use this file to discover all available pages before exploring further.
Preview a buy or sell quote for a tokenized equity.
Read-only relative to Fusion: this hits /quote/receive only and does
not consume a quote_id or commit an order. Use it to surface expected
output, fees, and a thin-liquidity warning before the user confirms; pass
the same body (plus slippage_bps) to POST /tokenized_assets/order
when they do.
Chain on which the tokenized asset trades. Currently only ethereum is supported; reserved for future xStocks venues.
base, ethereum, arbitrum, hyperevm Token the sender is paying. Either an on-chain symbol (e.g. TSLAon), the literal USDC, or a 0x-prefixed token address.
"USDC"
"WETH"
"0xA0b86a33E6441ccF30EE5DdEF1E9b652C91ac1c8"
Token the sender is receiving. Same accepted forms as from_token.
"USDC"
"WETH"
"0xA0b86a33E6441ccF30EE5DdEF1E9b652C91ac1c8"
Human-readable amount of from_token to swap (decimal string). Decimals are applied server-side.
Wallet that owns the Tokenized Assets Account. Used to verify the account is deployed before quoting; the account address is derived deterministically from this owner.
Successful Response
Preview of input/output amounts plus auction-derived risk hints.
Preview of input/output amounts and fees. Identical shape to the quote block on POST /tokenized_assets/order.
Slippage tolerance in basis points (1 bp = 0.01%) the UI should echo back as slippage_bps on POST /tokenized_assets/order. Derived from Fusion's Dutch auction range (auctionEndAmount vs toTokenAmount) plus a small buffer; capped at 5000 bps.
Worst-case basis-points gap between the auction's end amount and the reference quote amount. Surfaces as a thin-liquidity warning before the user signs.