/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/homeverse-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/homeverse-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/homeverse-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/homeverse-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": 4,
"query": "home",
"results": [
{
"name": "CoinMusme Oasys Home Verse",
"type": "token",
"symbol": "MSMNFT",
"address": "0x98C905f3521d7fdc0Dedde40edDA805A3fD4DcA1"
},
{
"name": "HomeToken",
"type": "token",
"symbol": "HMV",
"address": "0xd92EC358Bc75CB9d6702aA04E69727dB38373241"
},
{
"name": "S9Y_Homeverse",
"type": "token",
"symbol": "S9YHOME",
"address": "0x4262Fc2c23f486f06ceDb4e509Cc678B6a6660DD"
},
{
"name": "CoinMusme Oasys Home Verse",
"type": "token",
"symbol": "MSMNFT",
"address": "0xE3dc0e84a15951C094D5EfbB7814264a2af1602C"
}
]
},
"meta": {
"timestamp": "2026-06-08T18:25:38.303Z",
"request_id": "439974c8-e5e6-4fca-aa9c-f217af01a1ff"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}