/v1/wiki
A Fandom community profile and size
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/wiki" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fandom-api/v1/wiki", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fandom-api/v1/wiki");
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/wiki",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"url": "https://minecraft.fandom.com",
"name": "Minecraft Wiki",
"wiki": "minecraft",
"source": "Fandom",
"language": "en",
"statistics": {
"edits": 2069833,
"pages": 141987,
"users": 41251097,
"admins": 3,
"images": 75991,
"articles": 7616,
"active_users": 83
}
},
"meta": {
"timestamp": "2026-06-10T14:01:50.031Z",
"request_id": "f33f7c3b-0e70-49ea-b867-3427b3d842f5"
},
"status": "ok",
"message": "Wiki retrieved successfully",
"success": true
}