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

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

Get an API key

Code snippets

curl "https://api.oanor.com/degen-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/degen-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/degen-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/degen-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": "First Degen USD",
                "type": "token",
                "symbol": "FDUSD",
                "address": "0xAa58Cc585b8FC7D6C3c67e9847205AD6B8603929"
            },
            {
                "name": "Wrapped Degen USDe",
                "type": "token",
                "symbol": "WUSD",
                "address": "0xaD015e5beCf7f5E56d5aa5DE6D5a38DBDb408c74"
            },
            {
                "name": "Ethena USDe",
                "type": "token",
                "symbol": "USDE",
                "address": "0x83d735cB8Cc06f4EA2304125aB62D6f6600c54a8"
            },
            {
                "name": "Wrapped Degen USD Coin",
                "type": "token",
                "symbol": "WDUSDC",
                "address": "0x8e1EA9164e6F2EAB300fC90EdeBeE39D3c4Bc7EF"
            },
            {
                "name": "Add liquidity on Staked USDe",
                "type": "token",
                "symbol": "LPSUSDE",
                "address": "0xeDcC2095Ef6038511A634B13fC21784BeE765307"
            },
            {
                "name": "USD Degen Coin",
                "type": "token",
                "symbol": "USDDC",
                "address": "0x1aEb553282B1Eb10fACfd3e5932a84377E026081"
            },
            {
                "name": "CENEZ USD",
                "type": "token",
                "symbol": "CUSD",
                "address": "0x4878564D327b3715b8e47E78ec632c1a3D8286e1"
            },
            {
                "name": "Tether USD",
                "type": "token",
                "symbol": "USDTHETER",
                "address": "0x4925a041ebC29483dBd89a161Bd408973f622BcE"
            },
            {
                "name": "USD Degen",
                "type": "token",
                "symbol": "USDD",
                "address": "0x8bCE83F4979e4f1edb6B88980254b7b00dB173fF"
            },
            {
                "name": "Staked USDe x Degen",
                "type": "token",
                "symbol": "SUSDE",
                "address": "0xbc3210C1A5956d3565Ed6aE6e7deA04a14dBe70E"
            },
            {
                "name": "USD",
                "type": "token",
                "symbol": "USD",
                "address": "0xF66205f39A3563840C63ADce269E0F0aced0898C"
            },
            {
                "name": "Staked USDe",
                "type": "token",
                "symbol": "SUSDE",
                "address": "0x9472b67E839bCfB5CC9cDE263FE3F4De5BaF37f5"
            },
            {
                "name": "USDC",
                "type": "token",
                "symbol": "USDC",
                "address": "0xF1815bd50389c46847f0Bda824eC8da914045D14"
            },
            {
                "name": "Degen USDT",
                "type": "token",
                "symbol": "DUSDT",
                "address": "0x620A02F0B8ed04F5b714fd4623A2Eb0F72
…