/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/wikiedits-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wikiedits-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wikiedits-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/wikiedits-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"source": "MediaWiki action API (live)",
"service": "wikiedits-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "An editor's profile and stats (name=Jimbo Wales, lang=en).",
"GET /v1/contributions": "An editor's recent edits (user=Jimbo Wales, lang=en, limit).",
"GET /v1/recentchanges": "Live recent edits feed (lang=en, limit up to 100)."
},
"languages": [
"en",
"de",
"fr",
"es",
"it",
"nl",
"pt",
"ru",
"ja",
"zh",
"pl",
"sv",
"ar",
"fa",
"el"
],
"description": "Live Wikipedia editing activity from the official MediaWiki API: the firehose of recent edits across any language Wikipedia (title, editor, summary, byte change, timestamp, bot/minor/new flags), any editor's profile and contribution stats (total edits, registration, account age, groups), and an editor's own recent edits. Live, no key, multilingual. Distinct from Wikipedia content/search APIs and from pageview APIs — this is the editor-and-edits layer.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:02:14.577Z",
"request_id": "302b075a-71a2-408f-a2ba-4f2a5b5ce925"
},
"status": "ok",
"message": "Meta",
"success": true
}