---
title: "Get a gateway quote."
method: GET
path: "/v1/get-quote"
tags: ["v1"]
deprecated: true
---

# Get a gateway quote.

`GET /v1/get-quote`

> **Deprecated.**

Checks the available liquidity and provides a quote.

## Query parameters

- `srcChain` string, required
- `dstChain` string, required
- `sender` string
- `recipient` string, required
- `srcToken` string, required
- `dstToken` string, required
- `amount` string, required
- `gasRefill` string
- `slippage` string, required
- `strategyTarget` string
- `strategyMessage` string
- `affiliateId` string

## Response `200`

Get a quote

- union — Gateway quote.
  - object
    - `onramp` GatewayOnrampQuote, required
      - `affiliateAddress` string, nullable — Affiliate address
      - `dstChain` string, required — Destination chain
      - `dstToken` string, required — Destination token address
      - `estimatedTimeInSecs` integer, nullable — Estimated time in secs to complete the Order
      - `executionFees` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `feeBreakdown` GatewayOnrampFeeBreakdown, required
        - `affiliateFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
        - `executionFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
        - `layerzeroFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
        - `protocolFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
        - `solverFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
      - `fees` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `gasRefill` string, nullable — Optional gas refill amount
      - `inputAmount` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `outputAmount` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `recipient` string, required — Recipient address
      - `sender` string, nullable — Sender address
      - `signedQuoteData` string, required — The signed quote data to be used in create-order
      - `slippage` string, required — Slippage tolerance
      - `strategyAddress` string, nullable
      - `strategyMessage` string, nullable
      - `token` string, required — Token address
  - object
    - `offramp` GatewayOfframpQuote, required
      - `affiliateAddress` string, nullable
      - `estimatedTimeInSecs` integer, nullable — Estimated time in secs to complete the Order
      - `feeBreakdown` GatewayOfframpFeeBreakdown, required
        - `affiliateFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
        - `fastestFeeRate` string, required
        - `inclusionFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
        - `protocolFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
        - `solverFee` GatewayTokenAmount, required
          - `address` string, required
          - `amount` string, required
          - `chain` string, required
      - `fees` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `inputAmount` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `outputAmount` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `recipient` string, required
      - `sender` string, nullable
      - `slippage` integer, required
      - `srcChain` string, required
      - `tokenAddress` string, required
      - `txTo` string, required
  - object
    - `layerZero` GatewayLayerZeroQuote, required
      - `estimatedTimeInSecs` integer, nullable — Estimated time in secs to complete the Order
      - `fees` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `inputAmount` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `outputAmount` GatewayTokenAmount, required
        - `address` string, required
        - `amount` string, required
        - `chain` string, required
      - `recipient` string, required
      - `sender` string, nullable
      - `tx` TxInfo, required
        - `chain` string, required
        - `data` string, required
        - `to` string, required
        - `value` string, required

## Other responses

- `400` — Get a quote error

## Changes

- **2026-05-26** `ca0ef15d5879` — 1 info
  - endpoint deprecated
- **2026-05-06** `162bab886181` — 2 breaking, 1 warning, 4 info
  - removed the required property `details/oneOf[#/components/schemas/GatewayErrorDetails]/oneOf[subschema #3 -> subschema #8]/min_required_sats` from the response with the `400` status
  - removed the required property `details/oneOf[#/components/schemas/GatewayErrorDetails]/oneOf[subschema #3 -> subschema #8]/sender` from the response with the `400` status
  - added the new `QUOTE_AMOUNT_TOO_LOW` enum value to the `code` response property for the response status `400`
  - the endpoint scheme security `api_key` was added to the API
  - …3 more
- **2026-03-20** `3d71e0aeceec` — 1 info
  - added the non-success response with the status `400`
- **2026-03-16** `b1e404245821` — 1 info
  - added the required property `oneOf[subschema #1]/onramp/signedQuoteData` to the response with the `200` status
- **2026-03-05** `a6065adb7d74` — 1 breaking, 1 warning, 1 info
  - added `subschema #1, subschema #2, subschema #3` to the response body `oneOf` list for the response status `200`
  - deleted the `query` request parameter `instantSwap`
  - removed `subschema #1, subschema #2, subschema #3` from the response body `oneOf` list for the response status `200`

[Full history](https://skmtc.dev/bob-collective/apis/bob-gateway-api/changes/v1/get-quote/get.md)

---

[API](https://skmtc.dev/bob-collective/apis/bob-gateway-api.md) · [All operations](https://skmtc.dev/bob-collective/apis/bob-gateway-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bob-collective/bob-gateway-api/revisions/5a00610487e4/schema)
