/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/superseed-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/superseed-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/superseed-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/superseed-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": 38,
"query": "USD",
"results": [
{
"name": "USDC",
"type": "token",
"symbol": "USDC",
"address": "0xC316C8252B5F2176d0135Ebb0999E99296998F2e"
},
{
"name": "Tether USD",
"type": "token",
"symbol": "USDT",
"address": "0xc5068BB6803ADbe5600DE5189fe27A4dAcE31170"
},
{
"name": "Ionic USD Coin",
"type": "token",
"symbol": "ionUSDC",
"address": "0x68F97CB792aF8b3310911A5bd79410Bc8D5e32d6"
},
{
"name": "Bridged USDC",
"type": "token",
"symbol": "USDC.e",
"address": "0x0459d257914d1c1b08D6Fb98Ac2fe17b02633EAD"
},
{
"name": "USDC",
"type": "token",
"symbol": "USDC",
"address": "0x99a38322cAF878Ef55AE4d0Eda535535eF8C7960"
},
{
"name": "MellowVelodromeStrategy:SUPR-USDC-200",
"type": "token",
"symbol": "MVS:SUPR-USDC-200",
"address": "0xFcD4bE2aDb8cdB01e5308Cd96ba06F5b92aebBa1"
},
{
"name": "MellowVelodromeStrategy:WETH-USDC-100",
"type": "token",
"symbol": "MVS:WETH-USDC-100",
"address": "0xcd975e6a5F55137755487F0918b8ca74aCCe7925"
},
{
"name": "MellowVelodromeStrategy:oUSDT-USDC-1",
"type": "token",
"symbol": "MVS:oUSDT-USDC-1",
"address": "0xf7511B7433241A2873e089965578FF34b3eceb84"
},
{
"name": "USD Gambit",
"type": "token",
"symbol": "USDG",
"address": "0xC734cA0AabcD8a3ff123373ba80fE6Af65709358"
},
{
"name": "USD Gambit",
"type": "token",
"symbol": "USDG",
"address": "0xE99A62bECD2c558182d16c08c5F7F942a721c872"
},
{
"name": "Super USDT",
"type": "token",
"symbol": "USDT",
"address": "0xb0eb0856DD9A2DadBF170637A59f9eE2ca4A3f4a"
},
{
"name": "Tether USD",
"type": "token",
"symbol": "USDT",
"address": "0x3E12271EbD523d0886D0D51A4FF8D8e046CF2E1D"
},
{
"name": "USD Gambit",
"type": "token",
"symbol": "USDG",
"address": "0x9d66d23BC4BFCb2A5B48B6aAB990eA5D54af3a21"
},
{
"name": "USD Gambit",
"type": "token",
"symbol": "USDG",
…