mirrored listing x402 eip155:8453eip155:42793solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Price a swap without building a transaction

Price a swap without building a transaction. Returns expected input, output, and gas without constructing an executable transaction. Quotes are informational and can change with liquidity and chain state. Supports exact-output amounts, historical state, and pricing multiple amounts for one pair in a single request. Historical state is available for approximately 35 days. The first request for a block may take 1-7 seconds; subsequent requests use cached state.

Do you run api.3route.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1000 (raw units)
price
46
calls / 30d
3
unique payers
2026-09-18
updated

Provider

api.3route.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x5D89060682fcE50eCaa7600aF6A5645Bd2b107Eb",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "batch-settlement",
    "network": "eip155:8453",
    "payTo": "0x5D89060682fcE50eCaa7600aF6A5645Bd2b107Eb",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "eip155:42793",
    "payTo": "0x5D89060682fcE50eCaa7600aF6A5645Bd2b107Eb",
    "asset": "0x796Ea11Fa2dD751eD01b53C372fFDB4AAa8f00F9",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "AZ59bSccJmQu8Ljic1c5zxhjZitVbbutUYjBNwKLqfyD",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "pathParams": {
          "chainId": "4663"
        },
        "queryParams": {
          "amount": "1000000000000000000",
          "dst": "0x5fc5360d0400a0fd4f2af552add042d716f1d168",
          "fee": 0,
          "gasPrice": "1000000000",
          "includeBlockNumber": false,
          "includeProtocols": false,
          "includeTokensInfo": false,
          "isExactOutput": false,
          "src": "0x0000000000000000000000000000000000000000"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "dstAmount": "950000",
          "gas": 210000,
          "srcAmount": "1000000000000000000"
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/pro/:chainId/quote",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "pathParams": {
              "additionalProperties": false,
              "properties": {
                "chainId": {
                  "description": "Chain ID for the operation.",
                  "enum": [
                    "4663"
                  ],
                  "example": "4663",
                  "pattern": "^[0-9]+$",
                  "type": "string"
                }
              },
              "required": [
                "chainId"
              ],
              "type": "object"
            },
            "queryParams": {
              "additionalProperties": false,
              "properties": {
                "amount": {
                  "description": "Single amount in smallest units. Cannot be combined with amounts; one of the two is required.",
                  "example": "1000000000000000000",
                  "pattern": "^[0-9]+$",
                  "type": "string"
                },
                "amounts": {
                  "description": "Comma-separated amounts in smallest units. Cannot be combined with amount; one of the two is required.",
                  "pattern": "^[0-9]+(,[0-9]+)*$",
                  "type": "string"
                },
                "blockNumber": {
                  "minimum": 0,
                  "type": "integer"
                },
                "dst": {
                  "description": "Address of the token being bought; take one from the token-list operation for the selected chain, or use the zero address, or the case-insensitive sentinel 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, for the chain's native asset.",
                  "example": "0x5fc5360d0400a0fd4f2af552add042d716f1d168",
                  "pattern": "^0x[0-9a-fA-F]{40}$",
                  "type": "string"
                },
                "excludedProtocols": {
                  "type": "string"
                },
                "fee": {
                  "default": 0,
                  "maximum": 3,
                  "minimum": 0,
                  "type": "number"
                },
                "gasPrice": {
                  "example": "1000000000",
                  "pattern": "^[0-9]+$",
                  "type": "string"
                },
                "includeBlockNumber": {
                  "default": false,
                  "type": "boolean"
                },
                "includeProtocols": {
                  "default": false,
                  "type": "boolean"
                },
                "includeTokensInfo": {
                  "default": false,
                  "type": "boolean"
                },
                "isExactOutput": {
                  "default": false,
                  "type": "boolean"
                },
                "protocols": {
                  "type": "string"
                },
                "src": {
                  "description": "Address of the token being sold; use the zero address, or the case-insensitive sentinel 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, for the chain's native asset",
                  "example": "0x0000000000000000000000000000000000000000",
                  "pattern": "^0x[0-9a-fA-F]{40}$",
                  "type": "string"
                },
                "timestamp": {
                  "minimum": 0,
                  "type": "integer"
                }
              },
              "required": [
                "src",
                "dst"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "erc20ApprovalGasSponsoring": {
    "info": {
      "description": "The facilitator broadcasts a pre-signed ERC-20 approve() transaction to grant Permit2 allowance.",
      "version": "1"
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "amount": {
          "description": "The amount approved (uint256). Always MaxUint256.",
          "pattern": "^[0-9]+$",
          "type": "string"
        },
        "asset": {
          "description": "The address of the ERC-20 token contract.",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "type": "string"
        },
        "from": {
          "description": "The address of the sender (token owner).",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "type": "string"
        },
        "signedTransaction": {
          "description": "The RLP-encoded signed EIP-1559 transaction as a hex string.",
          "pattern": "^0x[a-fA-F0-9]+$",
          "type": "string"
        },
        "spender": {
          "description": "The address of the spender (Canonical Permit2).",
          "pattern": "^0x[a-fA-F0-9]{40}$",
          "type": "string"
        },
        "version": {
          "description": "Schema version identifier.",
          "pattern": "^[0-9]+(\\.[0-9]+)*$",
          "type": "string"
        }
      },
      "required": [
        "from",
        "asset",
        "spender",
        "amount",
        "signedTransaction",
        "version"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.3route.io/v1/pro/:chainId/quote"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.3route.io/v1/pro/:chainId/quote");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.3route.io/v1/pro/:chainId/quote")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/6708.json, and this resource appears in /discovery/resources and /discovery/search.