Search for DEX tokens by keyword (name, symbol, or contract address)
Search for DEX tokens by keyword (name, symbol, or contract address).
10000 (raw units)
price
35
calls / 30d
19
unique payers
2026-07-22
updated
Provider
pro-api.coinmarketcap.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3C5f3a6cE224BB89D72f5EB4232ecC27F67B3eeA",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 30
},
{
"scheme": "exact",
"network": "eip155:56",
"payTo": "0x3C5f3a6cE224BB89D72f5EB4232ecC27F67B3eeA",
"asset": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d",
"amount": "10000000000000000",
"maxTimeoutSeconds": 30
},
{
"scheme": "exact",
"network": "eip155:56",
"payTo": "0x3C5f3a6cE224BB89D72f5EB4232ecC27F67B3eeA",
"asset": "0xcE24439F2D9C6a2289F741120FE202248B666666",
"amount": "10000000000000000",
"maxTimeoutSeconds": 30
},
{
"scheme": "exact",
"network": "eip155:56",
"payTo": "0x3C5f3a6cE224BB89D72f5EB4232ecC27F67B3eeA",
"asset": "0xcE24439F2D9C6a2289F741120FE202248B666666",
"amount": "10000000000000000",
"maxTimeoutSeconds": 30
},
{
"scheme": "exact",
"network": "eip155:56",
"payTo": "0x3C5f3a6cE224BB89D72f5EB4232ecC27F67B3eeA",
"asset": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d",
"amount": "10000000000000000",
"maxTimeoutSeconds": 30
},
{
"scheme": "exact",
"network": "eip155:56",
"payTo": "0x3C5f3a6cE224BB89D72f5EB4232ecC27F67B3eeA",
"asset": "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d",
"amount": "10000000000000000",
"maxTimeoutSeconds": 30
},
{
"scheme": "exact",
"network": "eip155:56",
"payTo": "0x3C5f3a6cE224BB89D72f5EB4232ecC27F67B3eeA",
"asset": "0x55d398326f99059fF775485246999027B3197955",
"amount": "10000000000000000",
"maxTimeoutSeconds": 30
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"discoverable": true,
"method": "GET",
"queryParams": {
"q": "bnb"
},
"type": "http"
},
"output": {
"example": {
"data": {
"tks": [
{
"addr": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
"cid": 7192,
"dec": 18,
"liq": 141742079.24,
"mc": 1053227843.87,
"n": "Wrapped BNB",
"pc24h": 0.0395,
"plt": "BSC",
"pltId": 14,
"plti": 1839,
"pu": "626.34551132653429346570",
"s": "WBNB",
"v24h": 253425810.06
}
],
"total": 50
},
"status": {
"credit_count": 1,
"elapsed": 2388,
"error_code": "0",
"error_message": "",
"timestamp": "2026-02-26T11:05:46.935Z"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"q": {
"description": "Search keyword. Matches token name, symbol, or contract address.",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://pro-api.coinmarketcap.com/x402/v1/dex/search" # -> 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.coinmarketcap.com/x402/v1/dex/search");
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.coinmarketcap.com/x402/v1/dex/search")
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/1170.json, and this resource appears in /discovery/resources and /discovery/search.