/v1/search
Universal search
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}