Aller au contenu
GET /v1/top

Top DEXes by volume

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/dexvolume-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/dexvolume-api/v1/top" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexvolume-api/v1/top", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexvolume-api/v1/top");
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/dexvolume-api/v1/top",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "sort": "24h",
        "chain": "all",
        "count": 25,
        "dexes": [
            {
                "name": "Uniswap V4",
                "chains": [
                    "Ethereum",
                    "OP Mainnet",
                    "Base",
                    "Arbitrum",
                    "Polygon",
                    "Blast",
                    "Zora",
                    "World Chain",
                    "Ink",
                    "Soneium",
                    "Avalanche",
                    "BSC",
                    "Unichain",
                    "Monad",
                    "X Layer"
                ],
                "category": "Dexs",
                "volume_7d": 7498919995,
                "volume_24h": 1011550256,
                "volume_30d": 24606820224,
                "change_1d_pct": 53.55,
                "change_7d_pct": -1.42,
                "dominance_pct": 14.15,
                "change_30d_pct": 57.38
            },
            {
                "name": "PancakeSwap AMM V3",
                "chains": [
                    "BSC",
                    "Ethereum",
                    "Polygon zkEVM",
                    "ZKsync Era",
                    "Arbitrum",
                    "Linea",
                    "Base",
                    "opBNB",
                    "Solana",
                    "Monad"
                ],
                "category": "Dexs",
                "volume_7d": 6237077961,
                "volume_24h": 697947471,
                "volume_30d": 18851411117,
                "change_1d_pct": -2.05,
                "change_7d_pct": -32.95,
                "dominance_pct": 9.76,
                "change_30d_pct": 98.77
            },
            {
                "name": "Uniswap V3",
                "chains": [
                    "Ethereum",
                    "Arbitrum",
                    "OP Mainnet",
                    "Polygon",
                    "Celo",
                    "ZKsync Era",
                    "Sei",
                    "Taiko",
                    "Scroll",
                    "Rootstock",
                    "Filecoin",
                    "Boba",
                    "Moonbeam",
                    "Manta",
                    "Mantle",
                    "Linea",
                    "BSC",
                    "Avalanche",
                    "Base",
                    "Polygon zkEVM",
                    "Blast",
                    "Gnosis",
                    "BOB",
                    "Lisk",
                    "Corn",
                    "Unichain",
                    "Hemi",
                    "Saga",
                    "LightLink",
                    "GOAT",
                    "XDC",
                    "Lens",
                    "Telos",
                    "World Chain",
                    "Nibiru",
                    "Plasma",
                    "Monad",
                    "Etherlink",
                    "Sonic"
…