Vai al contenuto
GET /v1/page

A single article's detail and last edit

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/fandom-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}