Skip to content

Quote

This route gives a live quote returning the amount received on the given outbound chains.

https://backend.gas.zip/v2/quotes/<deposit_chain>/<deposit_wei>/<outbound_chains>

Schema

interface Quote {
  quotes: [
      {
        chain: number
        expected: number // estimated output in wei
        gas: number // estimated gas cost in wei
        speed: number // estimated time (s) to inclusion
        usd: number
      }
    | {
        chain: number
        error: string
      },
  ],
  error: string,
  calldata: string, // constructed data for Direct Deposit
  expires: number // time the quote is no longer guaranteed after
}