Skip to main content
GET
/
api
/
bridge
/
quote
Get Bridge Quote
curl --request GET \
  --url https://api.teel.finance/api/bridge/quote
{
  "sendAmount": 1000,
  "maxFee": 2.50,
  "minAmountReceived": 997.50,
  "estimatedTimeSec": 900
}
Returns a quote for bridging tokens from one blockchain to another, including estimated fees and transfer time.

Query Parameters

sourceChain
string
required
The source blockchain (e.g. ethereum, polygon, arbitrum, solana).
destinationChain
string
required
The destination blockchain (e.g. ethereum, polygon, arbitrum, solana).
amount
number
required
The amount of tokens to bridge.
protocol
string
The bridging protocol to use. Defaults to cctp.

Response

sendAmount
number
The amount of tokens to send from the source chain.
maxFee
number
The maximum fee that may be charged for the bridge transfer.
minAmountReceived
number
The minimum amount guaranteed to be received on the destination chain.
estimatedTimeSec
number
Estimated time in seconds for the bridge transfer to complete.
{
  "sendAmount": 1000,
  "maxFee": 2.50,
  "minAmountReceived": 997.50,
  "estimatedTimeSec": 900
}