Zum Inhalt springen
GET /v1/search

Universal search

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/shibarium-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/shibarium-api/v1/search" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/shibarium-api/v1/search", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/shibarium-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/shibarium-api/v1/search",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 50,
        "query": "bone",
        "results": [
            {
                "name": "Wrapped BONE",
                "type": "token",
                "symbol": "WBONE",
                "address": "0x839FdB6cc98342B428E074C1573ADF6D48CA3bFd"
            },
            {
                "name": "Shibarium Wrapped BONE",
                "type": "token",
                "symbol": "WBONE",
                "address": "0xC76F4c819D820369Fb2d7C1531aB3Bb18e6fE8d8"
            },
            {
                "name": "BONES",
                "type": "token",
                "symbol": "BONES",
                "address": "0x5BBDB90dAFc39ac324148075cc73A02355Ccf3C0"
            },
            {
                "name": "Bonelon Mars",
                "type": "token",
                "symbol": "ELON",
                "address": "0x1327Bc16c3Ad5A0a54d72Ef15FB8Da9259FEB7b6"
            },
            {
                "name": "woofswap.finance",
                "type": "token",
                "symbol": "BONE to $1000",
                "address": "0x80AEc6f66f1C0d7D1f7c23a1Bfb66907ABf4601F"
            },
            {
                "name": "BONES",
                "type": "token",
                "symbol": "BONES",
                "address": "0xE1B4134267c2Aa17fE033E5B64576323390bA114"
            },
            {
                "name": "Wrapped BONES",
                "type": "token",
                "symbol": "WBONES",
                "address": "0x213c25900f365F1BE338Df478CD82beF7Fd43F85"
            },
            {
                "name": "Book of Bone",
                "type": "token",
                "symbol": "BoB",
                "address": "0x1AE23dCC622D84389Ec35Cb4Cb1046Ce342Be59d"
            },
            {
                "name": "Bone Whale",
                "type": "token",
                "symbol": "BONEWHALE",
                "address": "0x33cA1D9305D5bB1cbeba0440C1B0fD5e1f8C81B9"
            },
            {
                "name": "Bone Dinu",
                "type": "token",
                "symbol": "BONDI",
                "address": "0xFCc32B166fC1FeE49F84dd09adF4782719c67244"
            },
            {
                "name": "Boneshi",
                "type": "token",
                "symbol": "BONESHI",
                "address": "0xd348D4f38f9f6710ae18580B161024D3C115F512"
            },
            {
                "name": "K9 Staked BONE",
                "type": "token",
                "symbol": "knBONE",
                "address": "0x3358FCA51d7C0408750FBbE7777012E0b67C027F"
            },
            {
                "name": "Boneeee",
                "type": "token",
                "symbol": "Boneeee",
                "address": "0x1c1Ba7647374d13700b670559db4761CD6D83fE7"
            },
            {
                "name": "BoneTech",
                "type": "token",
                "symbol": "Bone Tech",
                "address": "0xd33988452D0ECA594B8Ab931CF668ea036Cb0c94"
   
…