/v1/pair
One pair by chain + address
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/dexpairs-api/v1/pair" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexpairs-api/v1/pair", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexpairs-api/v1/pair");
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/pair",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"dex": "uniswap",
"fdv": 4307722042,
"url": "https://dexscreener.com/ethereum/0xe0554a476a092703abdb3ef35c80e0d76d32939f",
"base": {
"name": "Wrapped Ether",
"symbol": "WETH",
"address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
},
"chain": "ethereum",
"quote": {
"symbol": "USDC",
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
},
"txns_24h": {
"buys": 11087,
"sells": 9526
},
"price_usd": 1668.36,
"volume_1h": 726495.28,
"volume_6h": 7460447.17,
"market_cap": 4307722042,
"volume_24h": 39968425.04,
"pair_address": "0xE0554a476A092703abdB3Ef35c80e0D76d32939F",
"price_native": 1668.3656,
"liquidity_usd": 3504048.73,
"pair_created_at": 1636926269000,
"price_change_pct": {
"h1": -0.13,
"h6": -1.39,
"m5": -0.05,
"h24": -1.34
}
},
"meta": {
"timestamp": "2026-06-09T11:39:50.134Z",
"request_id": "07107998-5ad9-4071-8582-251d98446cd4"
},
"status": "ok",
"message": "Pair retrieved successfully",
"success": true
}