ToolAssay

Uniswap Trading API quote with on-chain oracle price comparison

Uniswap Trading API quote with on-chain oracle price comparison. Drop-in proxy for Uniswap /quote — same request body, response includes priceFeedExists, deltaBps, and oracleAmount.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
977 msmedian answer time
$0.0021listed price per call
$0.0021price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://trader.rigoblock.com/api/quote/uniswap

CategoryMarket data
Provider hosttrader.rigoblock.com
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.0021 977 ms

Example input (from the provider)

{
  "body": {
    "amount": "1000000000000000000",
    "swapper": "0x0000000000000000000000000000000000000000",
    "tokenIn": "0x0000000000000000000000000000000000000000",
    "tokenInChainId": 8453,
    "tokenOut": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "tokenOutChainId": 8453,
    "type": "EXACT_INPUT"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "amount": {
              "description": "Amount in base units (e.g. '1000000000000000000')",
              "type": "string"
            },
            "swapper": {
              "description": "Swapper address (required by Uniswap Trading API)",
              "type": "string"
            },
            "tokenIn": {
              "description": "Token to sell (address or symbol)",
              "type": "string"
            },
            "tokenInChainId": {
              "description": "Chain ID for tokenIn (e.g. 8453)",
              "type": "integer"
            },
            "tokenOut": {
              "description": "Token to buy (address or symbol)",
              "type": "string"
            },
            "tokenOutChainId": {
              "description": "Chain ID for tokenOut (e.g. 8453)",
              "type": "integer"
            },
            "type": {
              "description": "Quote type",
              "enum": [
                "EXACT_INPUT",
                "EXACT_OUTPUT"
              ],
              "type": "string"
            }
          },
          "required": [
            "type",
            "amount",
            "tokenIn",
            "tokenOut",
            "tokenInChainId",
            "tokenOutChainId",
            "swapper"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "deltaBps": {
              "type": "integer"
            },
            "oracleAmount": {
              "type": "string"
            },
            "priceFeedExists": {
              "type": "boolean"
            },
            "routing": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON