/v1/search
Universal on-chain search
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/etc-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/etc-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/etc-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/etc-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 11,
"query": "USDC",
"results": [
{
"name": "USD Coin",
"type": "token",
"symbol": "USDC",
"address": "0xC1Be9a4D5D45BeeACAE296a7BD5fADBfc14602C4"
},
{
"name": "USD//C",
"type": "token",
"symbol": "USDC",
"address": "0xa241971df75dD4B0749C825f38db4cc677F24E0E"
},
{
"name": "USDCETC",
"type": "token",
"symbol": "USDCe",
"address": "0xd71b69fa4b3226F31b412339e9c565eE3dae63Bb"
},
{
"name": "USDC",
"type": "token",
"symbol": "USDC.ls",
"address": "0xE4F82AE8770649e9aE364B7aB91972c915e5be8d"
},
{
"name": "USDC",
"type": "token",
"symbol": "USDC.ls",
"address": "0xFFe9122E2ccb59C3Ae7f631BCd29036e2dab3489"
},
{
"name": "USDC",
"type": "token",
"symbol": "USDC.cx",
"address": "0x91319054B6A569D17825B43f746fB42c613Db42c"
},
{
"name": "USDC",
"type": "token",
"symbol": "USDC.cy",
"address": "0x3651bF9502d7099Dbd16f6968E467D86C8B3c99D"
},
{
"name": "USDC",
"type": "token",
"symbol": "USDC.cx",
"address": "0xD8acF95c5499E402Dde7D8Ca2604f64FA77fFCf1"
},
{
"name": null,
"type": "metadata_tag",
"address": "0x2859a4eBcB58c8Dd5cAC1419C4F63A071b642B20"
},
{
"name": null,
"type": "metadata_tag",
"address": "0x6065A982F04F759b7d2D042D2864e569fad84214"
},
{
"name": null,
"type": "metadata_tag",
"address": "0xc3d688B66703497DAA19211EEdff47f25384cdc3"
}
]
},
"meta": {
"timestamp": "2026-06-08T01:18:17.737Z",
"request_id": "50db99d8-f3c0-4eda-af68-e91fc29160d3"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}