/v1/page
A single article's detail and last edit
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/fandom-api/v1/page" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fandom-api/v1/page", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fandom-api/v1/page");
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/page",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"url": "https://marvel.fandom.com/wiki/Spider-Man",
"wiki": "marvel",
"title": "Spider-Man",
"source": "Fandom",
"page_id": 8190,
"language": "en",
"last_edit": {
"user": "Nurdboy42",
"timestamp": "2026-05-31T00:19:52Z"
},
"categories": [
"Disambiguation Pages"
],
"last_touched": "2026-06-03T01:21:39Z",
"length_bytes": 40491
},
"meta": {
"timestamp": "2026-06-10T14:01:50.528Z",
"request_id": "ade3821f-9f2f-4574-96c9-64afb4ab95e3"
},
"status": "ok",
"message": "Page retrieved successfully",
"success": true
}