/v1/search
Universal search
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/rss3-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rss3-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rss3-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/rss3-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 6,
"query": "rss3",
"results": [
{
"name": "RSS3",
"type": "token",
"symbol": "RSS3",
"address": "0x4200000000000000000000000000000000000042"
},
{
"name": "RSS3Doge",
"type": "token",
"symbol": "RSS3Doge",
"address": "0x2Dbf2E097Ed0CFAaD780A1BDAa0165375b389D80"
},
{
"name": "Wrapped RSS3",
"type": "token",
"symbol": "WRSS3",
"address": "0xE27D019909738D98Ab7F850C05eE07806c30c71D"
},
{
"name": "RSS3Token",
"type": "contract",
"address": "0x57c743232669AAcE5Bc676A5a7053d06CC0197b0"
},
{
"name": "RSS3Token",
"type": "contract",
"address": "0x61CC09Edb7c82Ba4d0fBEB81123087358aD62D75"
},
{
"name": "RSS3Token",
"type": "contract",
"address": "0xc0D3C0d3c0D3C0d3c0D3c0D3C0d3C0D3c0D30042"
}
]
},
"meta": {
"timestamp": "2026-06-08T18:25:18.130Z",
"request_id": "0221b669-d16c-46f1-80ea-0869f50f672f"
},
"status": "ok",
"message": "Search results retrieved successfully",
"success": true
}