/v1/search
Universal on-chain search
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/ronin-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ronin-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ronin-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/ronin-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"count": 11,
"query": "USD",
"results": [
{
"name": "USD Coin",
"type": "token",
"symbol": "USDC",
"address": "0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc"
},
{
"name": "Lumi Finance USD",
"type": "token",
"symbol": "LUAUSD",
"address": "0x18d2bDEf572C67127E218c425f546FE64430a92C"
},
{
"name": "USD Coin - Wrapped Ronin",
"type": "token",
"symbol": "USDC-WRON",
"address": "0x4f7687aFFc10857fccD0938ECda0947DE7aD3812"
},
{
"name": "Ronin USD Coin - Ronin Wrapped Ether",
"type": "token",
"symbol": "USDC-WETH",
"address": "0xA7964991f339668107E2b6A6f6b8e8B74Aa9D017"
},
{
"name": "USD Coin - PIXEL",
"type": "token",
"symbol": "USDC-PIXEL",
"address": "0xC717Ae6924A822F50eB9780fA279fdc7ced07771"
},
{
"name": "Lumi Finance USD - Lumi Finance Token",
"type": "token",
"symbol": "LUAUSD-LUA",
"address": "0x7467A7ac7f29C9b654349493B0f41e4EAA2a685a"
},
{
"name": "USD Coin - AEVUM",
"type": "token",
"symbol": "USDC-AVM",
"address": "0xF26D33188D66Be5d9aC7FC1442171db139F17506"
},
{
"name": "USD Coin - Gas Infinity",
"type": "token",
"symbol": "USDC-GAS",
"address": "0x863F26643D03f179905F9606507f0Ce47Afb29EF"
},
{
"name": "USD Coin - Infinity",
"type": "token",
"symbol": "USDC-INFINITY",
"address": "0x1371AbdAEBBa5B89cc9ef1b73f994a03e1a9Ad35"
},
{
"name": "Wrapped USDC",
"type": "token",
"symbol": "wUSDC",
"address": "0xBD872FBC820F58b509c7D0b5876013fF31C2E3a4"
},
{
"name": "USD Coin - Ronin Monke",
"type": "token",
"symbol": "USDC-Ronke",
"address": "0xf0107aa09dAd1ce122f03fFf0D26AE3B52Cc4f88"
}
]
},
"meta": {
"timestamp": "2026-06-08T09:50:26.022Z",
"request_id": "e29471f8-c947-4e8c-bb4a-b2f0a8f321ca"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}