Skip to content
GET /v1/search

Universal on-chain search

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/world-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/world-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/world-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/world-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/world-api/v1/search",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 50,
        "query": "USD",
        "results": [
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0x79A02482A880bCE3F13e09Da970dC34db4CD24d1"
            },
            {
                "name": "Stargate Bridged USDT0",
                "type": "token",
                "symbol": "USDT0",
                "address": "0x102d758f688a4C1C5a80b116bD945d4455460282"
            },
            {
                "name": "Re7 USDC",
                "type": "token",
                "symbol": "Re7USDC",
                "address": "0xb1E80387EbE53Ff75a89736097D34dC8D9E9045B"
            },
            {
                "name": "Osmosis allUSDT",
                "type": "token",
                "symbol": "USDT",
                "address": "0xb098302C82a239b05d3f77809Ca1aDA97B8ae220"
            },
            {
                "name": "Capyfi USDC",
                "type": "token",
                "symbol": "caUSDC",
                "address": "0x05350F1FC5d396917A73FCE318524551e287D1Df"
            },
            {
                "name": "Xone Bridged USDT (Xone)",
                "type": "token",
                "symbol": "USDT",
                "address": "0x9ee8C396b55134d3C75F3DE4c74088e799614B21"
            },
            {
                "name": "ROSCA Test USD",
                "type": "token",
                "symbol": "rTUSD",
                "address": "0xee50756B94b7E5bEa498B0FcE7193FC21dC9d04A"
            },
            {
                "name": "World Liberty Financial USD",
                "type": "token",
                "symbol": "USD1",
                "address": "0x8D23ba075cd59883036c74Aa05692d35583EBc9b"
            },
            {
                "name": "Bridged USDC (world-chain-mainnet)",
                "type": "token",
                "symbol": "USDC.e",
                "address": "0xE17e574F594a65E73D79Ff5f308fD2FFcB6F77b5"
            },
            {
                "name": "Tether USDt",
                "type": "token",
                "symbol": "USDT",
                "address": "0x891b3AE49ca46D8E840900D68dD50EB9A275e693"
            },
            {
                "name": "ROSCA Chaos USD",
                "type": "token",
                "symbol": "rCHAOS",
                "address": "0x8b58f47c72aAD8B3821629E90F0C1825F65BBa3F"
            },
            {
                "name": "USDT",
                "type": "token",
                "symbol": "TETHER",
                "address": "0x93069fa780feeE1cd09757c3Df86d4F88fE6a928"
            },
            {
                "name": "ROSCA Canary USD",
                "type": "token",
                "symbol": "rCAN",
                "address": "0x3C4B54376885123C31aB4F2cC62013a2B45275c2"
            },
            {
                "name": "USDZ",
                "type": "token",
                "symbol": "USDZ",
                "address": "0x6c196aCC3
…