DEX price quote across 7 chains (Ethereum, Base, Arbitrum, Optimism, Polygon, BN
DEX price quote across 7 chains (Ethereum, Base, Arbitrum, Optimism, Polygon, BNB, Unichain). Returns sell/buy amounts, price, routing, and gas estimate.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.002listed price per call
n/aprice 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
GET https://trader.rigoblock.com/api/quote
| Category | Market data |
|---|---|
| Provider host | trader.rigoblock.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"amount": "1",
"buy": "USDC",
"chain": "8453",
"sell": "ETH"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"amount": {
"description": "Amount to sell (human-readable, e.g. '1' for 1 ETH)",
"type": "string"
},
"buy": {
"description": "Token to buy (ETH, USDC, WBTC, or contract address)",
"type": "string"
},
"chain": {
"description": "Chain name or ID (e.g. 'base', '8453', 'arbitrum', '42161')",
"type": "string"
},
"operator": {
"description": "Optional operator address for browser auth bypass",
"type": "string"
},
"sell": {
"description": "Token to sell (ETH, USDC, WBTC, or contract address)",
"type": "string"
},
"sig": {
"description": "Optional EIP-191 signature for browser auth bypass",
"type": "string"
},
"slippage": {
"description": "Optional slippage tolerance in basis points (e.g. '100' for 1%)",
"type": "string"
},
"ts": {
"description": "Optional signature timestamp for browser auth bypass",
"type": "string"
},
"vault": {
"description": "Optional Rigoblock vault address for gas estimation",
"type": "string"
}
},
"required": [
"sell",
"buy",
"amount"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"buy": {
"type": "string"
},
"chainId": {
"type": "integer"
},
"gasFeeUSD": {
"type": "string"
},
"gasLimit": {
"type": "string"
},
"price": {
"type": "string"
},
"routing": {
"type": "string"
},
"sell": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}