Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/wikiedits-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}