/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/manta-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/manta-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/manta-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/manta-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": "Tether USD",
"type": "token",
"symbol": "USDT",
"address": "0xf417F5A458eC102B90352F697D6e2Ac3A3d2851f"
},
{
"name": "USD Coin",
"type": "token",
"symbol": "USDC",
"address": "0xb73603C5d87fA094B7314C74ACE2e64D165016fb"
},
{
"name": "Wrapped Mountain Protocol USD",
"type": "token",
"symbol": "wUSDM",
"address": "0xbdAd407F77f44F7Da6684B416b1951ECa461FB07"
},
{
"name": "sb Wrapped Mountain Protocol USD",
"type": "token",
"symbol": "sbwUSDM",
"address": "0xc0Ef6DEA74E54689867fDD5F0ab2202F7d8A0D7b"
},
{
"name": "LayerBank USDC",
"type": "token",
"symbol": "lUSDC",
"address": "0x7Def25c6C2b4Bc9e9fB5122D22650F8EcdFeff45"
},
{
"name": "sb USDC",
"type": "token",
"symbol": "sbUSDC",
"address": "0xfF2033181Cbf7EE2656d9a527d378930b31C3a42"
},
{
"name": "ZeroLend Variable Debt USDC",
"type": "token",
"symbol": "variableDebtz0USDC",
"address": "0xCb2dA0F5aEce616e2Cbf29576CFc795fb15c6133"
},
{
"name": "iZUMi Bond USD",
"type": "token",
"symbol": "iUSD",
"address": "0x078f712f038A95BeEA94F036cADB49188a90604b"
},
{
"name": "ZeroLend Variable Debt USDT",
"type": "token",
"symbol": "variableDebtz0USDT",
"address": "0xc1d9ca73f57930D4303D380C5DC668C40B38598B"
},
{
"name": "ZeroLend USDC",
"type": "token",
"symbol": "z0USDC",
"address": "0xB4FFEf15daf4C02787bC5332580b838cE39805f5"
},
{
"name": "ZeroLend USDT",
"type": "token",
"symbol": "z0USDT",
"address": "0x759cb97fbc452BAFD49992BA88d3C5dA4Dd9B0e7"
},
{
"name": "USDe",
"type": "token",
"symbol": "USDe",
"address": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34"
},
{
"name": "USDEX+",
"type": "token",
"symbol": "USDEX+",
"address": "0x6Da9EbD271a0676F39C088a2b5fd849D5080c0af"
},
{
"name": "KEOM USD Coin",
"type": "token",
"symbol": "kUSDC",
…