/v1/meta
Service metadata and endpoint catalog
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/fandom-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fandom-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fandom-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/fandom-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"source": "Fandom MediaWiki Action API (<wiki>.fandom.com, live)",
"service": "fandom-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/page": "An article's url, length, categories and last edit (wiki=marvel, title=Spider-Man).",
"GET /v1/wiki": "A Fandom community's profile and size (wiki=minecraft).",
"GET /v1/search": "Full-text search a wiki's articles (wiki=minecraft, q=diamond, limit).",
"GET /v1/activity": "A wiki's live recent-changes feed (wiki=starwars, limit)."
},
"description": "Live community data from Fandom (formerly Wikia), the world's largest network of fan-built wikis, each a fan-run encyclopedia powered by MediaWiki. Every Fandom wiki lives at a subdomain (minecraft, marvel, starwars, pokemon) and this API speaks to any of them by name. The wiki endpoint returns a community's profile and size (pages, articles, edits, images, registered users, active users, admins); the search endpoint full-text searches a wiki's articles; the page endpoint returns one article's url, length, categories, language and most recent edit; the activity endpoint returns a wiki's live recent-changes feed (latest edits, who, when, byte change and summary). Live, no key, nothing stored. Distinct from the Wikipedia, Wikibooks, Wikivoyage and other Wikimedia-project APIs — those are Wikimedia's own reference projects; this is Fandom's network of fan-built community wikis.",
"upstream_status": "ok",
"community_central_articles": 43360
},
"meta": {
"timestamp": "2026-06-10T14:01:52.229Z",
"request_id": "053ad183-282f-4a30-9e1a-668b52373314"
},
"status": "ok",
"message": "Meta",
"success": true
}