/v1/search
Search chains
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/chaintvl-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chaintvl-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chaintvl-api/v1/search");
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/chaintvl-api/v1/search",
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": {
"count": 2,
"query": "arbi",
"total": 2,
"chains": [
{
"name": "Arbitrum",
"rank": 9,
"tvl_usd": 1260234521,
"chain_id": 42161,
"gecko_id": "arbitrum",
"token_symbol": "ARB",
"dominance_pct": 1.75
},
{
"name": "Arbitrum Nova",
"rank": 194,
"tvl_usd": 340157,
"chain_id": 42170,
"gecko_id": null,
"token_symbol": null,
"dominance_pct": 0
}
]
},
"meta": {
"timestamp": "2026-06-09T03:03:07.348Z",
"request_id": "4a059ac5-2f59-4031-9fff-6e32e029ff23"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}