Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/kyberswap-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "chains": [
            "ethereum",
            "arbitrum",
            "base",
            "optimism",
            "polygon",
            "bsc"
        ],
        "source": "KyberSwap Aggregator API (aggregator-api.kyberswap.com, live)",
        "service": "kyberswap-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/quote": "Best swap quote between two tokens (chain=ethereum, from=USDC, to=WETH, amount=1000).",
            "GET /v1/chains": "All supported chains.",
            "GET /v1/tokens": "Supported tokens on a chain (chain=ethereum)."
        },
        "description": "Live DEX-aggregator swap quotes from KyberSwap, which routes a trade across every decentralised exchange and liquidity pool on a chain to find the best output. The quote endpoint prices a swap between two tokens on Ethereum, Arbitrum, Base, Optimism, Polygon or BNB Chain — amount received, USD values in and out, price impact, estimated gas cost and the DEXs the route passes through; the tokens endpoint lists supported tokens per chain; the chains endpoint lists supported chains. Live, no key, nothing stored. Distinct from single-DEX feeds and from Solana swap aggregators — this is KyberSwap's own multi-chain EVM swap-routing and best-price layer.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:39.470Z",
        "request_id": "6a9d5296-1600-4b94-9f99-a9af7b94d654"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}