/v1/meta
Counts, publishers & usage notes
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/superhero-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/superhero-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/superhero-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/superhero-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Comic & movie superheroes. /v1/hero = one hero by id or name (e.g. id=70 or q=Batman) with powerstats, biography, appearance, work, connections and images; /v1/search = search by name with optional publisher/alignment filters; /v1/list = list/filter all heroes (publisher=, alignment=good|bad|neutral) with paging. Data is a fixed snapshot of the open SuperHero DB.",
"source": "SuperHero Database (akabab/superhero-api) — bundled static snapshot",
"endpoints": [
"/v1/hero",
"/v1/search",
"/v1/list",
"/v1/meta"
],
"alignments": [
"good",
"bad",
"neutral"
],
"publishers": [
"ABC Studios",
"Angel",
"Angel Salvadore",
"Ant-Man",
"Anti-Venom",
"Anti-Vision",
"Archangel",
"Aztar",
"Batgirl",
"Batgirl III",
"Batgirl V",
"Batman II",
"Binary",
"Black Racer",
"Boom-Boom",
"DC Comics",
"Dark Horse Comics",
"Deadpool",
"Evil Deadpool",
"Flash IV",
"Gemini V",
"George Lucas",
"Giant-Man",
"Goliath",
"IDW Publishing",
"Icon Comics",
"Image Comics",
"Impulse",
"Iron Lad",
"J. K. Rowling",
"J. R. R. Tolkien",
"Jean Grey",
"Marvel Comics",
"Meltdown",
"Microsoft",
"Ms Marvel II",
"NBC - Heroes",
"Nightwing",
"Oracle",
"Phoenix",
"Power Man",
"Power Woman",
"Rebellion",
"Red Hood",
"Red Robin",
"Robin II",
"Robin III",
"Rune King Thor",
"Scorpion",
"She-Thing",
"Shueisha",
"Sony Pictures",
"South Park",
"Speed Demon",
"Spider-Carnage",
"Spoiler",
"Star Trek",
"Superman Prime One-Million",
"SyFy",
"Tempest",
"Thunderbird II",
"Titan Books",
"Toxin",
"Universal Studios",
"Venom III",
"Vindicator II",
"Wildstorm"
],
"total_heroes": 563
},
"meta": {
"timestamp": "2026-06-01T00:04:36.268Z",
"request_id": "6f8d3215-a7ff-419b-8cec-b2596b56a585"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}