/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/katana-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/katana-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/katana-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/katana-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": "Vault Bridge USDC",
"type": "token",
"symbol": "vbUSDC",
"address": "0x203A662b0BD271A6ed5a60EdFbd04bFce608FD36"
},
{
"name": "Vault Bridge USDT",
"type": "token",
"symbol": "vbUSDT",
"address": "0x2DCa96907fde857dd3D816880A0df407eeB2D2F2"
},
{
"name": "Steakhouse Prime USDC",
"type": "token",
"symbol": "steakUSDC",
"address": "0x61D4F9D3797BA4dA152238c53a6f93Fb665C3c1d"
},
{
"name": "Charm_vbUSDC/vbETH005",
"type": "token",
"symbol": "USDCETH5",
"address": "0xc78c51F88adFbAdcDfafCfeF7F5E3d3c6C7d5129"
},
{
"name": "Frax USD",
"type": "token",
"symbol": "frxUSD",
"address": "0x80Eede496655FB9047dd39d9f418d5483ED600df"
},
{
"name": "Gauntlet USDC",
"type": "token",
"symbol": "gtUSDC",
"address": "0xE4248e2105508FcBad3fe95691551d1AF14015f7"
},
{
"name": "Gauntlet USDT",
"type": "token",
"symbol": "gtUSDT",
"address": "0x1ecDC3F2B5E90bfB55fF45a7476FF98A8957388E"
},
{
"name": "dTRINITY USD",
"type": "token",
"symbol": "dUSD",
"address": "0xcA52d08737E6Af8763a2bF6034B3B03868f24DDA"
},
{
"name": "Yearn OG USDC",
"type": "token",
"symbol": "ymvOG-vbUSDC",
"address": "0xCE2b8e464Fc7b5E58710C24b7e5EBFB6027f29D7"
},
{
"name": "Staked Frax USD",
"type": "token",
"symbol": "sfrxUSD",
"address": "0x5Bff88cA1442c2496f7E475E9e7786383Bc070c0"
},
{
"name": "Stable Yield USD",
"type": "token",
"symbol": "syUSD",
"address": "0x279CAD277447965AF3d24a78197aad1B02a2c589"
},
{
"name": "Yearn OG USDT",
"type": "token",
"symbol": "ymvOG-vbUSDT",
"address": "0x8ED68f91AfbE5871dCE31ae007a936ebE8511d47"
},
{
"name": "BitVault USD",
"type": "token",
"symbol": "bvUSD",
"address": "0x876aac7648D79f87245E73316eB2D100e75F3Df1"
},
{
"name": "xAUSD-USDC01",
"type": "token",
"symbol": "xAUSD-USDC01",
…