Search onchain DEX pools and token, by contract address, name, or token symbol
Search onchain DEX pools and token, by contract address, name, or token symbol.
10000 (raw units)
price
10
calls / 30d
8
unique payers
2026-09-15
updated
Provider
pro-api.coingecko.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x110cdBba7FE6434Ec4CE3464CC523942ad6Fb784",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "8XhngTRitTcUJMiaDJ6azw8GRSiFPpwhnmV3HYQLHUpL",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"include": "base_token",
"network": "eth",
"page": 1,
"query": "weth"
},
"type": "http"
},
"output": {
"example": {
"data": [
{
"attributes": {
"address": "0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640",
"base_token_price_native_currency": "1.0",
"base_token_price_quote_token": "3662.46",
"base_token_price_usd": "3653.12491645176",
"fdv_usd": "11007041041",
"market_cap_usd": null,
"name": "WETH / USDC 0.05%",
"pool_created_at": "2021-12-29T12:35:14Z",
"price_change_percentage": {
"h1": "0.51",
"h24": "7.71",
"h6": "0.86",
"m15": "0.21",
"m30": "0.31",
"m5": "0"
},
"quote_token_price_base_token": "0.00027304",
"quote_token_price_native_currency": "0.000273040545093221",
"quote_token_price_usd": "0.998343707926245",
"reserve_in_usd": "163988541.3812",
"transactions": {
"h1": {
"buyers": 83,
"buys": 97,
"sellers": 124,
"sells": 144
},
"h24": {
"buyers": 1625,
"buys": 2966,
"sellers": 2399,
"sells": 3847
},
"m15": {
"buyers": 19,
"buys": 19,
"sellers": 27,
"sells": 27
},
"m30": {
"buyers": 45,
"buys": 49,
"sellers": 57,
"sells": 61
},
"m5": {
"buyers": 7,
"buys": 7,
"sellers": 2,
"sells": 2
}
},
"volume_usd": {
"h1": "16798158.0138526",
"h24": "536545444.904535",
"h6": "164054610.850188",
"m15": "2056262.885098",
"m30": "4081230.098456",
"m5": "868581.7348314"
}
},
"id": "eth_0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640",
"relationships": {
"base_token": {
"data": {
"id": "eth_0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"type": "token"
}
},
"dex": {
"data": {
"id": "uniswap_v3",
"type": "dex"
}
},
"quote_token": {
"data": {
"id": "eth_0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"type": "token"
}
}
},
"type": "pool"
}
],
"included": [
{
"attributes": {
"address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"coingecko_coin_id": "weth",
"decimals": 18,
"image_url": "https://assets.coingecko.com/coins/images/2518/small/weth.png?1696503332",
"name": "Wrapped Ether",
"symbol": "WETH"
},
"id": "eth_0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
"type": "token"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"include": {
"type": "string"
},
"network": {
"type": "string"
},
"page": {
"type": "integer"
},
"query": {
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
}
}Use it
curl
curl "https://pro-api.coingecko.com/api/v3/x402/onchain/search/pools" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://pro-api.coingecko.com/api/v3/x402/onchain/search/pools");
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://pro-api.coingecko.com/api/v3/x402/onchain/search/pools")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1311.json, and this resource appears in /discovery/resources and /discovery/search.