Zum Inhalt springen
GET /v1/meta

Races, affiliations & usage notes

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "The Dragon Ball universe. /v1/character = a character by id or search/filter (name, race, affiliation, gender) — with ki, max ki, origin planet and transformations (e.g. name=Goku → Saiyan, Z Fighter, 6 transformations); /v1/planet = a planet by id or the list. Add page & limit to paginate.",
        "races": [
            "Saiyan",
            "Namekian",
            "Human",
            "Majin",
            "Frieza Race",
            "Android",
            "Jiren Race",
            "God",
            "Angel",
            "Evil",
            "Nucleico",
            "Unknown"
        ],
        "source": "dragonball-api.com",
        "endpoints": [
            "/v1/character",
            "/v1/planet",
            "/v1/meta"
        ],
        "affiliations": [
            "Z Fighter",
            "Red Ribbon Army",
            "Namekian Warrior",
            "Freelancer",
            "Army of Frieza",
            "Pride Troopers",
            "Assistant of Vermouth",
            "Villain",
            "Other"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:28.545Z",
        "request_id": "d654b394-79dc-4488-b028-7eb08bdd276c"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}