/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/ink-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ink-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ink-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/ink-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": 50,
"query": "USDC",
"results": [
{
"name": "USDC",
"type": "token",
"symbol": "USDC",
"address": "0x2D270e6886d130D724215A266106e6832161EAEd"
},
{
"name": "Stargate Bridged USDC",
"type": "token",
"symbol": "USDC.E",
"address": "0xF1815bd50389c46847f0Bda824eC8da914045D14"
},
{
"name": "Advanced Strategies USDC",
"type": "token",
"symbol": "sentoraUSDC",
"address": "0x9761DDF8e79930b334f1Be1BD93aBE3695061CcA"
},
{
"name": "ICHI Vault Liquidity",
"type": "token",
"symbol": "IV-RSRVR-USDC.e-WETH-3000",
"address": "0xB3d903BE7FC055DE1Fd69BB599f36ACDCe83b7Be"
},
{
"name": "Boosted Yield USDC",
"type": "token",
"symbol": "boostedUSDC",
"address": "0xDbD87325D7b1189Dcc9255c4926076fF4a96A271"
},
{
"name": "Balanced Yield USDC",
"type": "token",
"symbol": "balancedUSDC",
"address": "0xcaae49fb7f74cCFBE8A05E6104b01c097a78789f"
},
{
"name": "ICHI Vault Liquidity",
"type": "token",
"symbol": "IV-RSRVR-WETH-USDC.e-3000",
"address": "0x8E3954c71BB583129635EE9dcAA9ac9f0AE2Ea96"
},
{
"name": "MellowVelodromeStrategy:WETH-USDC.e-100",
"type": "token",
"symbol": "MVS:WETH-USDC.e-100",
"address": "0xcd975e6a5F55137755487F0918b8ca74aCCe7925"
},
{
"name": "Aave InkWhitelabel USDC",
"type": "token",
"symbol": "aInkWlUSDC",
"address": "0x70A38B0c90441e991346B7A0Cd98C8528dD1c234"
},
{
"name": "Aave InkWhitelabel Variable Debt USDC",
"type": "token",
"symbol": "variableDebtInkWlUSDC",
"address": "0x305c03f74DBb8C6052b7667AaBEE21dC7c1f0B29"
},
{
"name": "Shroomy USDC",
"type": "token",
"symbol": "sUSDC",
"address": "0x25c5B209eA5480E590245Fc42780e3e538D059c5"
},
{
"name": "Curve.fi USDC/USDT Gauge Deposit",
"type": "token",
"symbol": "USDC/USDT-gauge",
"address": "0x24E934a055c77C6428117DD3c2965b96b7B0108C"
},
{
"name": "USD Coin",
"type": "token",
"symbol": "USDC",
"address": "0x23f63C65c474f2A5BF80ea845Ca496Da3
…