/v1/meta
Races, affiliations & usage notes
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}