/v1/page
A single article's detail and last edit
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/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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}