/v1/search
Universal 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/numbers-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/numbers-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/numbers-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/numbers-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": 5,
"query": "numbers",
"results": [
{
"name": "Numbers Native Token",
"type": "token",
"symbol": "NNT",
"address": "0xC455B83C4F71Fd6c44Ba1eDDC9Eb1DaF31869400"
},
{
"name": "Numbers Native Token",
"type": "token",
"symbol": "NNT",
"address": "0x395c2EAa45865870d735074093720819359B6d0a"
},
{
"name": "Numbers Native Token",
"type": "token",
"symbol": "NNT",
"address": "0xcE145F7451060Ed1ec49c522c75Cd24D0044c1e6"
},
{
"name": "Numbers Native Token",
"type": "token",
"symbol": "NNT",
"address": "0x442bE00c47C7B1d3A972D179dc696DEd006862b8"
},
{
"name": "Numbers Native Token",
"type": "token",
"symbol": "NNT",
"address": "0xB4d72f0FCCd3Db4dD79b1AdA71Cf2ECd4D11E8cd"
}
]
},
"meta": {
"timestamp": "2026-06-08T18:25:52.252Z",
"request_id": "c9b3246c-8938-4587-bf92-245900b9bf06"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}