/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.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/edgen-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/edgen-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/edgen-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/edgen-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": 7,
"query": "Edgen",
"results": [
{
"name": "Wrapped Edgen",
"type": "token",
"symbol": "WEDGEN",
"address": "0x975f740d383B9bECBd69189D40390149C8951932"
},
{
"name": "Edgen Sample Token",
"type": "token",
"symbol": "EST",
"address": "0x5a057D0a115D4f004Fd58a3faAe75eeBfb6aD414"
},
{
"name": "Edgen Sample Token",
"type": "token",
"symbol": "EST",
"address": "0x795e55668b050cb366305595e601b603B12eabeE"
},
{
"name": "Wrapped Edgen",
"type": "token",
"symbol": "WEDGEN",
"address": "0x7d54BD069D6E09860c49779ee99a98f8bC5f4e70"
},
{
"name": "EdgenDeposit",
"type": "contract",
"address": "0xDd9aD0F4cE629B53419545480021f141DEfD16A1"
},
{
"name": "EdgenSwapFactory",
"type": "contract",
"address": "0x4e7eb33C3297Bdce7417Cd033eA0BC289a4Fa513"
},
{
"name": "EdgenSwapRouter",
"type": "contract",
"address": "0x1bb6f318C0805E4d2917544e2cD0BDF628eB516e"
}
]
},
"meta": {
"timestamp": "2026-06-08T09:50:19.234Z",
"request_id": "9042aa08-ab72-4aff-a210-1e906364412b"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}