Vai al contenuto
GET /v1/search

Universal search

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/electroneum-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/electroneum-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/electroneum-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/electroneum-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": 8,
        "query": "BOLT",
        "results": [
            {
                "name": "ElectroSwap",
                "type": "token",
                "symbol": "BOLT",
                "address": "0x043fAa1b5C5FC9a7dc35171f290c29ECDE0cCff1"
            },
            {
                "name": "BOLT Jar",
                "type": "token",
                "symbol": "JAR",
                "address": "0x947321143E176DC02FD4Ac82d5688759dCAb83ed"
            },
            {
                "name": "BOLT on Steriod",
                "type": "token",
                "symbol": "$BOLT",
                "address": "0xc6721b517791ed76FCD133DdFa178BbFea358A66"
            },
            {
                "name": "ElectroSwap",
                "type": "token",
                "symbol": "$BOLT",
                "address": "0xec8b6DF0eCC86954137403Cc30be9c2e020BfC6F"
            },
            {
                "name": "Blue Lightning",
                "type": "token",
                "symbol": "BOLT",
                "address": "0x3cca6Bc6F0abaE8881194b784A95A0097A379F89"
            },
            {
                "name": "Bolt on Steroid",
                "type": "token",
                "symbol": "sBOLT",
                "address": "0x3B5278ad0dD980B61c6565a0273393a00dfefCF8"
            },
            {
                "name": "The Flamingo Bolt",
                "type": "token",
                "symbol": "FB-001",
                "address": "0x41F69B3E20F1F7d43C8E8c1FB8A8A8dF8052CDFf"
            },
            {
                "name": "BoltJar",
                "type": "contract",
                "address": "0x947321143E176DC02FD4Ac82d5688759dCAb83ed"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-08T09:49:19.279Z",
        "request_id": "753a7e29-48da-42df-81d8-320c7f91cc0c"
    },
    "status": "ok",
    "message": "Search results retrieved successfully",
    "success": true
}