Skip to main content
GET
Prices an order against Sprinter liquidity and reserves that liquidity for the quote’s validity window. The response is shaped like a single element of LI.FI’s request-quote response, so an existing LI.FI intents client can consume it unchanged.
A quote is valid for 15 seconds. The reservation expires with it. Call POST /lifi-intents/transaction immediately — do not cache a quote or show it to a user for confirmation before converting it.

Behaviour

Errors

404 is a capacity answer, not a validity answer. Fall back to your own path if it persists, but a single retry a few seconds later often succeeds.

Address format

user, receiver and asset inside preview are ERC-7930 interoperable addresses — chain id and account packed into one byte string:
0x0001000002210514833589fc...2913 decodes to USDC on Base (0x2105 = 8453). metadata.exclusiveFor is a plain 20-byte hex address, not ERC-7930.

Next step

Pass the quote object straight to POST /lifi-intents/transaction to get the transaction that opens the order.

Authorizations

X-Auth-Token
string
header
required

Query Parameters

srcChain
string
required

Source CAIP chain ID (e.g., eip155:8453)

dstChain
string
required

Destination CAIP chain ID (e.g., eip155:42161)

amount
string
required

Amount in the smallest denomination

token
string
required

Destination (borrow) token address (hex)

user
string
required

User address on the source chain (hex)

srcToken
string

Source token address (hex). Defaults to the destination token's symbol on the source chain

receiver
string

Receiver address on the destination chain (hex); defaults to user

type
string

Quote algorithm type (ExactInput or ExactOutput); defaults to ExactInput

Response

LI.FI intents quotes

quotes
object[]
required

Quotes offered for the request. Sprinter returns exactly one.