/v1/chains
All supported chains
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/kyberswap-api/v1/chains" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kyberswap-api/v1/chains", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kyberswap-api/v1/chains");
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/chains",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 6,
"chains": [
{
"chain": "ethereum",
"tokens": 6
},
{
"chain": "arbitrum",
"tokens": 6
},
{
"chain": "base",
"tokens": 4
},
{
"chain": "optimism",
"tokens": 5
},
{
"chain": "polygon",
"tokens": 6
},
{
"chain": "bsc",
"tokens": 4
}
],
"source": "KyberSwap"
},
"meta": {
"timestamp": "2026-06-10T22:56:39.257Z",
"request_id": "b8a3531e-b3cd-448f-8ecb-a42608f842d8"
},
"status": "ok",
"message": "Chains retrieved successfully",
"success": true
}