/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/swell-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/swell-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/swell-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/swell-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": 30,
"query": "USD",
"results": [
{
"name": "USDe",
"type": "token",
"symbol": "USDe",
"address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34"
},
{
"name": "Relend Network USDC",
"type": "token",
"symbol": "rUSDC",
"address": "0x9ab96A4668456896d45c301Bc3A15Cee76AA7B8D"
},
{
"name": "Staked USDe",
"type": "token",
"symbol": "sUSDe",
"address": "0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2"
},
{
"name": "Stargate USD₮0 (Bridged)",
"type": "token",
"symbol": "USD₮0",
"address": "0x102d758f688a4C1C5a80b116bD945d4455460282"
},
{
"name": "Orki USD Stablecoin",
"type": "token",
"symbol": "USDK",
"address": "0x0000bAa0b1678229863c0A941C1056b83a1955F5"
},
{
"name": "USDC",
"type": "token",
"symbol": "USDC",
"address": "0x99a38322cAF878Ef55AE4d0Eda535535eF8C7960"
},
{
"name": "Ionic USDe",
"type": "token",
"symbol": "ionUSDe",
"address": "0x80De7898e9A19f2eef3f91649c77163F177778Ce"
},
{
"name": "StableV2 AMM - USDe/rUSDC",
"type": "token",
"symbol": "sAMMV2-USDe/rUSDC",
"address": "0xF1C0e9F805270De0BCe9cfec5A8395c7c65Fe254"
},
{
"name": "Tether USD",
"type": "token",
"symbol": "USDT",
"address": "0xb89c6ED617f5F46175E41551350725A09110bbCE"
},
{
"name": "USD Stable",
"type": "token",
"symbol": "USDs",
"address": "0x7fA65bb90fCEc0FA82e009E65AA3736c376C2572"
},
{
"name": "Hyperliquid USDC Vault",
"type": "token",
"symbol": "hlUSDC",
"address": "0x5ec9FDA544c2924B9545504d20d6430EF197a5c7"
},
{
"name": "Hyperliquid USDC Vault",
"type": "token",
"symbol": "hlUSDC",
"address": "0xC33b90C5f9db994114694d3dEdC7017f92b2cA54"
},
{
"name": "MellowVelodromeStrategy:oUSDT-USDe-1",
"type": "token",
"symbol": "MVS:oUSDT-USDe-1",
"address": "0xf7511B7433241A2873e089965578FF34b3eceb84"
},
{
"name": "StableV2 AMM - USDK/rUSDC",
"type": "token",
"sy
…