/v1/token
All pools for a token
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/dexpairs-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexpairs-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexpairs-api/v1/token");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/dexpairs-api/v1/token",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 20,
"pairs": [
{
"dex": "uniswap",
"fdv": 4306587940,
"url": "https://dexscreener.com/ethereum/0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640",
"base": {
"name": "Wrapped Ether",
"symbol": "WETH",
"address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
},
"chain": "ethereum",
"quote": {
"symbol": "USDC",
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
},
"txns_24h": {
"buys": 6189,
"sells": 5499
},
"price_usd": 1667.92,
"volume_1h": 980680.74,
"volume_6h": 7946724.59,
"market_cap": 4306587940,
"volume_24h": 80685092.32,
"pair_address": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640",
"price_native": 1667.9263,
"liquidity_usd": 85084855.6,
"pair_created_at": 1620250931000,
"price_change_pct": {
"h1": -0.16,
"h6": -1.39,
"m5": -0.05,
"h24": -1.4
}
},
{
"dex": "uniswap",
"fdv": 4315119008,
"url": "https://dexscreener.com/ethereum/0x4e68ccd3e89f51c3074ca5072bbac773960dfa36",
"base": {
"name": "Wrapped Ether",
"symbol": "WETH",
"address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
},
"chain": "ethereum",
"quote": {
"symbol": "USDT",
"address": "0xdAC17F958D2ee523a2206206994597C13D831ec7"
},
"txns_24h": {
"buys": 2933,
"sells": 626
},
"price_usd": 1671.23,
"volume_1h": 73201.87,
"volume_6h": 2174720.02,
"market_cap": 4315119008,
"volume_24h": 25105393.57,
"pair_address": "0x4e68Ccd3E89f51C3074ca5072bbAC773960dFa36",
"price_native": 1671.2304,
"liquidity_usd": 74515302.08,
"pair_created_at": 1620232628000,
"price_change_pct": {
"h1": 0.03,
"h6": -1.11,
"m5": null,
"h24": -1.2
}
},
{
"dex": "uniswap",
"fdv": 4313224293,
"url": "https://dexscreener.com/ethereum/0x8ad599c3a0ff1de082011efddc58f1908eb6e6d8",
"base": {
"name": "Wrapped Ether",
"symbol": "WETH",
…