/v1/search
Universal on-chain search
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/vana-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vana-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vana-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/vana-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 9,
"query": "USD",
"results": [
{
"name": "Bridged USDC (Stargate)",
"type": "token",
"symbol": "USDC.e",
"address": "0xF1815bd50389c46847f0Bda824eC8da914045D14"
},
{
"name": "USDT",
"type": "token",
"symbol": "USDT",
"address": "0x88853D410299BCBfE5fCC9Eef93c03115E908279"
},
{
"name": "Tether USD",
"type": "token",
"symbol": "USDT",
"address": "0x376E33487e5570b1AcE1abBa05A436f00283A524"
},
{
"name": "Us Dollar",
"type": "token",
"symbol": "USD",
"address": "0x0c431CBdC21570184034839cBEB047C47fA4D120"
},
{
"name": "Bridged Tether Usd",
"type": "token",
"symbol": "USDT.e",
"address": "0x20c57ff879a2B45da13671FE0b8C695987610167"
},
{
"name": "Test USDC",
"type": "token",
"symbol": "tUSDC",
"address": "0x1Fe0eBD7B53fC434Ea0a69074406503F9Ab0e2FC"
},
{
"name": "Test USDT",
"type": "token",
"symbol": "tUSDT",
"address": "0xC7623faa9e41DaAf854F07B5b45e70Cf1d68583E"
},
{
"name": "Test USDC",
"type": "token",
"symbol": "USDC",
"address": "0x4e2E0D7a5dcFB4F177036d5c6e5802C586b1126F"
},
{
"name": "Tether POW",
"type": "token",
"symbol": "USDTP",
"address": "0x928e5F0B365Ae151c882E27f78860724082b7d1d"
}
]
},
"meta": {
"timestamp": "2026-06-08T09:50:54.507Z",
"request_id": "87a59d8f-81a5-47f4-b3e5-ddcfc588c9d4"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}