Skip to content
GET /v1/search

Search addresses, tokens, blocks & txns

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/arbitrum-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/arbitrum-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/arbitrum-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/arbitrum-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/arbitrum-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": "USDC",
        "results": [
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
            },
            {
                "name": "Arbitrum Bridged USDC (Arbitrum)",
                "type": "token",
                "symbol": "USDC.E",
                "address": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8"
            },
            {
                "name": "kpk USDC Yield V2 Morpho Vault (Arbitrum)",
                "type": "token",
                "symbol": "KPK_USDC_YIELDV2",
                "address": "0x5837e4189819637853a357aF36650902347F5e73"
            },
            {
                "name": "Wrapped Aave Arbitrum USDCn",
                "type": "token",
                "symbol": "WAARBUSDCN",
                "address": "0x7F6501d3B98eE91f9b9535E4b0ac710Fb0f9e0bc"
            },
            {
                "name": "aarna atv USDC (Arbitrum)",
                "type": "token",
                "symbol": "ATVUSDC",
                "address": "0x15F7AD22Caa786B1237B27d4324c7E4a93c5e66b"
            },
            {
                "name": "Gains Network USDC",
                "type": "token",
                "symbol": "GUSDC",
                "address": "0xd3443ee1e91aF28e5FB858Fbd0D72A63bA8046E0"
            },
            {
                "name": "Curve.fi USDC/USDT",
                "type": "token",
                "symbol": "2CRV",
                "address": "0x7f90122BF0700F9E7e1F688fe926940E8839F353"
            },
            {
                "name": "Aave v3 USDC",
                "type": "token",
                "symbol": "AUSDC",
                "address": "0x724dc807b04555b71ed48a6896b6F41593b8C637"
            },
            {
                "name": "Aave v3 USDC.e",
                "type": "token",
                "symbol": "AUSDC.E",
                "address": "0x625E7708f30cA75bfd92586e17077590C60eb4cD"
            },
            {
                "name": "Axelar Bridged USDC",
                "type": "token",
                "symbol": "AXLUSDC",
                "address": "0xEB466342C4d449BC9f53A865D5Cb90586f405215"
            },
            {
                "name": "Fluid USDC",
                "type": "token",
                "symbol": "FUSDC",
                "address": "0x4CFA50B7Ce747e2D61724fcAc57f24B748FF2b2A"
            },
            {
                "name": "Jones USDC",
                "type": "token",
                "symbol": "JUSDC",
                "address": "0xe66998533a1992ecE9eA99cDf47686F4fc8458E0"
            },
            {
                "name": "Parifi USDC",
                "type": "token",
                "symbol": "PFUSDC",
                "address": "0xE11508d3e0cf09e6FD6E94fDF41E83836D83CE50"
            },
            {
                "name": "Hop USDC LP Token",
                "type": "token",
 
…