/v1/meta
Service metadata
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/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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}