AgentOracle
AgentOracle: use when choosing where to execute a Base swap. Compares live Uniswap V3 and KyberSwap routes by expected output, slippage, price impact, estimated gas, and gas-adjusted net execution price. Indicative results expire after 30 seconds.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.1listed 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
POST https://aiagentoracle.ai/api/v1/execution/quote
| Category | Code and developer |
|---|---|
| Provider host | aiagentoracle.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 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)
{
"body": {
"amount": 0.1,
"fromToken": "WETH",
"network": "base",
"slippageBps": 100,
"toToken": "USDC"
},
"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": {
"additionalProperties": false,
"properties": {
"amount": {
"exclusiveMinimum": 0,
"type": "number"
},
"fromToken": {
"enum": [
"WETH",
"USDC",
"USDT",
"DAI"
],
"type": "string"
},
"network": {
"enum": [
"base",
"eip155:8453"
],
"type": "string"
},
"slippageBps": {
"default": 100,
"maximum": 5000,
"minimum": 1,
"type": "integer"
},
"toToken": {
"enum": [
"WETH",
"USDC",
"USDT",
"DAI"
],
"type": "string"
}
},
"required": [
"network",
"fromToken",
"toToken",
"amount"
],
"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": {
"bestRoute": {
"type": [
"object",
"null"
]
},
"confidence": {
"enum": [
"HIGH",
"MEDIUM",
"LOW"
],
"type": "string"
},
"disclaimer": {
"type": "string"
},
"expiresAt": {
"format": "date-time",
"type": "string"
},
"fromToken": {
"type": "string"
},
"inputAmount": {
"type": "number"
},
"inputAmountAtomic": {
"type": "string"
},
"methodology": {
"type": "string"
},
"network": {
"enum": [
"eip155:8453"
],
"type": "string"
},
"quotedAt": {
"format": "date-time",
"type": "string"
},
"routes": {
"items": {
"properties": {
"confidence": {
"enum": [
"HIGH",
"MEDIUM",
"LOW"
],
"type": "string"
},
"executable": {
"type": "boolean"
},
"expectedOutput": {
"type": "number"
},
"expectedOutputAtomic": {
"type": "string"
},
"expiresAt": {
"format": "date-time",
"type": "string"
},
"feeBps": {
"type": [
"number",
"null"
]
},
"gasUnits": {
"type": "string"
},
"gasUsd": {
"type": [
"number",
"null"
]
},
"grossExecutionPrice": {
"type": "number"
},
"minimumOutput": {
"type": "number"
},
"minimumOutputAtomic": {
"type": "string"
},
"netExecutionPrice": {
"type": [
"number",
"null"
]
},
"priceImpactPercent": {
"type": [
"number",
"null"
]
},
"quoteType": {
"enum": [
"EXECUTABLE",
"INDICATIVE"
],
"type": "string"
},
"rank": {
"type": "integer"
},
"route": {
"type": "string"
},
"slippageBps": {
"type": "integer"
},
"source": {
"type": "string"
},
"venue": {
"type": "string"
}
},
"required": [
"rank",
"venue",
"route",
"feeBps",
"quoteType",
"executable",
"expectedOutput",
"expectedOutputAtomic",
"minimumOutput",
"minimumOutputAtomic",
"gasUnits",
"gasUsd",
"slippageBps",
"priceImpactPercent",
"grossExecutionPrice",
"netExecutionPrice",
"confidence",
"e