Naar de inhoud
GET /v1/list

Paged list of collections

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/nft-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "page": 1,
        "count": 50,
        "collections": [
            {
                "id": "autoglyphs",
                "name": "Autoglyphs",
                "chain": "ethereum",
                "symbol": "☵",
                "contract": "0xd4e4078ca3495de5b1d4db434bebc5a986197782"
            },
            {
                "id": "spacepunksclub",
                "name": "SpacePunksClub",
                "chain": "ethereum",
                "symbol": "⚇",
                "contract": "0x45db714f24f5a313569c41683047f1d49e78ba07"
            },
            {
                "id": "meebits",
                "name": "Meebits",
                "chain": "ethereum",
                "symbol": "⚇",
                "contract": "0x7Bd29408f11D2bFC23c34f18275bBf23bB716Bc7"
            },
            {
                "id": "mooncats-acclimated",
                "name": "MoonCats - Acclimated",
                "chain": "ethereum",
                "symbol": "😺",
                "contract": "0xc3f733ca98e0dad0386979eb96fb1722a1a05e69"
            },
            {
                "id": "beranames",
                "name": "Beranames",
                "chain": "berachain",
                "symbol": "🐻🪪",
                "contract": "0x5ede4408e78c36c3ab16c5813c418624c2823b27"
            },
            {
                "id": "0n1force",
                "name": "0N1 Force",
                "chain": "ethereum",
                "symbol": "0N1",
                "contract": "0x3bf2922f4520a8ba0c2efc3d2a1539678dad5e9d"
            },
            {
                "id": "100-web-characters",
                "name": "100 Web Characters",
                "chain": "avalanche",
                "symbol": "100WEBCHARS",
                "contract": "0xc4252cadeff39a78d92b3150f08e4cadf88a8095"
            },
            {
                "id": "10ktf",
                "name": "10KTF",
                "chain": "ethereum",
                "symbol": "10KTF",
                "contract": "0x0cfb5d82be2b949e8fa73a656df91821e2ad99fd"
            },
            {
                "id": "10ktf-combat-gear",
                "name": "10KTF Combat Gear",
                "chain": "ethereum",
                "symbol": "10KTF",
                "contract": "0xe75ef1ec029c71c9db0f968e389331609312aa22"
            },
            {
                "id": "10ktf-stockroom",
                "name": "10KTF Stockroom",
                "chain": "ethereum",
                "symbol": "10KTF-STOCKROOM",
                "contract": "0x7daec605e9e2a1717326eedfd660601e2753a057"
            },
            {
                "id": "1111-by-kevin-abosch",
                "name": "1111 by Kevin Abosch",
                "chain": "ethereum",
                "symbol": "1111",
                "contract": "0x7F72528229F85C99D8843C0317eF91F4A2793Edf"
            },
            {
                "id": "1337-skulls",
                "name": "1337 skulls",
                "chain": "ethereum",
 
…