/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/rari-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rari-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rari-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/rari-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": "rari",
"results": [
{
"name": "Rarible",
"type": "token",
"symbol": "RARI",
"address": "0xD9F3BfeD52ec008A13cF08C7382a917Eb364Cc32"
},
{
"name": "Rarible OG",
"type": "token",
"symbol": "RFAR",
"address": "0x2c57bD140e8E28a9A6aEd519c80510Db33cF4893"
},
{
"name": "Rarible",
"type": "token",
"symbol": "RARI",
"address": "0xBFb17500344bA3475d46091F5c8f1e33B31ed909"
},
{
"name": "RARI",
"type": "token",
"symbol": "RARI",
"address": "0xCf78572A8fE97b2B9a4B9709f6a7D9a863c1b8E0"
},
{
"name": "Proud To Be Rariain's",
"type": "token",
"symbol": "PTBRS",
"address": "0x366EC1F45151Bf60d613859f89D9D6eea72FE9D2"
},
{
"name": "Discover RariChain On Dora",
"type": "token",
"symbol": "DROD",
"address": "0x5018C2a3992cfdc651e6D036A9EEc2b978dc7A32"
},
{
"name": "Rari LST",
"type": "token",
"symbol": "stRARI",
"address": "0x6a74F6b4f4687966aA6b95571f97Cc8216970775"
},
{
"name": "RARIFUN",
"type": "token",
"symbol": "RARIFUN",
"address": "0x279b280F97DB76FE13c264dA3A8563A7Ad59fa8c"
},
{
"name": "Rari ETH",
"type": "token",
"symbol": "rariETH",
"address": "0x5d82Ac302C64B229dC94f866FD10EC6CcF8d47A2"
},
{
"name": "RARI GIRL",
"type": "token",
"symbol": "RG",
"address": "0xeA039abAF152f5B3DA87Ad371b5F8c9C54B380ED"
},
{
"name": "Rariain’s Ape Society",
"type": "token",
"symbol": "RAPE",
"address": "0xe331FC26018A36F43727D02ea237691309AaeCdb"
},
{
"name": "Rari 3D NFTs Evo",
"type": "token",
"symbol": "RNEVO",
"address": "0xF75046f19e778F40be66767e851dEdCC6a71a8a6"
},
{
"name": "Rari Opinion Shaping System",
"type": "token",
"symbol": "ROSS",
"address": "0x57fc3d0eD1814E66186B39d59d78Ca9872529BBB"
},
{
"name": "Rariain’s OG",
"type": "token",
"symbol": "ROG",
"address": "0x65d49E0F2e333662E1809a61bB954CCCd24F
…