Zum Inhalt springen
GET /v1/serie

Series detail with sets

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "serie": {
            "id": "base",
            "logo": "https://assets.tcgdex.net/en/base/base1/logo.webp",
            "name": "Base",
            "sets": [
                {
                    "id": "base1",
                    "logo": "https://assets.tcgdex.net/en/base/base1/logo.webp",
                    "name": "Base Set",
                    "symbol": null,
                    "card_count": 102
                },
                {
                    "id": "base2",
                    "logo": "https://assets.tcgdex.net/en/base/base2/logo.webp",
                    "name": "Jungle",
                    "symbol": "https://assets.tcgdex.net/univ/base/base2/symbol.webp",
                    "card_count": 64
                },
                {
                    "id": "basep",
                    "logo": "https://assets.tcgdex.net/en/base/basep/logo.webp",
                    "name": "Wizards Black Star Promos",
                    "symbol": "https://assets.tcgdex.net/univ/base/basep/symbol.webp",
                    "card_count": 53
                },
                {
                    "id": "wp",
                    "logo": null,
                    "name": "W Promotional",
                    "symbol": null,
                    "card_count": 7
                },
                {
                    "id": "base3",
                    "logo": "https://assets.tcgdex.net/en/base/base3/logo.webp",
                    "name": "Fossil",
                    "symbol": "https://assets.tcgdex.net/univ/base/base3/symbol.webp",
                    "card_count": 62
                },
                {
                    "id": "base4",
                    "logo": "https://assets.tcgdex.net/en/base/base4/logo.webp",
                    "name": "Base Set 2",
                    "symbol": "https://assets.tcgdex.net/univ/base/base4/symbol.webp",
                    "card_count": 130
                },
                {
                    "id": "base5",
                    "logo": "https://assets.tcgdex.net/en/base/base5/logo.webp",
                    "name": "Team Rocket",
                    "symbol": "https://assets.tcgdex.net/univ/base/base5/symbol.webp",
                    "card_count": 83
                }
            ]
        }
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:19.389Z",
        "request_id": "4259c4a1-2b2a-4356-892d-01bdf9c38851"
    },
    "status": "ok",
    "message": "Series retrieved successfully",
    "success": true
}