/v1/search
Search addresses, tokens, blocks & txns
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/matic-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/matic-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/matic-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/matic-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": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359"
},
{
"name": "Polygon Bridged USDC (Polygon PoS)",
"type": "token",
"symbol": "USDC.E",
"address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174"
},
{
"name": "Matic Aave Interest Bearing USDC",
"type": "token",
"symbol": "MAUSDC",
"address": "0x9719d867A500Ef117cC201206B8ab51e794d3F82"
},
{
"name": "Axelar Bridged USDC",
"type": "token",
"symbol": "AXLUSDC",
"address": "0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed"
},
{
"name": "Aave v3 USDC",
"type": "token",
"symbol": "AUSDC",
"address": "0x625E7708f30cA75bfd92586e17077590C60eb4cD"
},
{
"name": "Bridged USD Coin (Wormhole Ethereum)",
"type": "token",
"symbol": "USDCET",
"address": "0x4318CB63A2b8edf2De971E2F17F77097e499459D"
},
{
"name": "Aave Polygon USDC",
"type": "token",
"symbol": "AMUSDC",
"address": "0x1a13F4Ca1d028320A707D99520AbFefca3998b7F"
},
{
"name": "Real USDC",
"type": "token",
"symbol": "USDC",
"address": "0xa04fa84A5909A090224214705c64988a611749d2"
},
{
"name": "Chia USD",
"type": "token",
"symbol": "USDC",
"address": "0xE2Efe36142ce689804A3EF0e19969f71Ba87f1B3"
},
{
"name": "Real USDC",
"type": "token",
"symbol": "RUSDC",
"address": "0xB93a84C6177504318D4916D90c1AF435F4aF9767"
},
{
"name": "$30,000 USDC VALUE!",
"type": "token",
"symbol": "Shiba Inu",
"address": "0x87F43D90A9772aAe2c296dDFC3CcB30d10F4F692"
},
{
"name": "!$30,000 USDC VALUE",
"type": "token",
"symbol": "Shiba Inu",
"address": "0x0616b3E673E6f06eBC2baB3E136acf7ca23BF328"
},
{
"name": "! $30,000 USDC VALUE",
"type": "token",
"symbol": "Shiba Inu",
"address": "0xb1D44525ec7Ad436026D0a9a2180915e241144c4"
},
{
"name": "✅$USDC REWARD POOL",
"type": "token",
…