Skip to content
GET /v1/page-contributors

The editors who built an article

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/wikiedits-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/wikiedits-api/v1/page-contributors" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/wikiedits-api/v1/page-contributors", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/wikiedits-api/v1/page-contributors");
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/page-contributors",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "url": "https://en.wikipedia.org/wiki/Wikipedia",
        "lang": "en",
        "count": 25,
        "title": "Wikipedia",
        "pageid": 5043734,
        "contributors": [
            {
                "name": "Bbb23",
                "userid": 7583140
            },
            {
                "name": "Ipigott",
                "userid": 2639797
            },
            {
                "name": "Frmorrison",
                "userid": 5195920
            },
            {
                "name": "Obsidian Soul",
                "userid": 10938973
            },
            {
                "name": "Chiswick Chap",
                "userid": 2666701
            },
            {
                "name": "Graham87",
                "userid": 194203
            },
            {
                "name": "Lopifalko",
                "userid": 11116033
            },
            {
                "name": "Deisenbe",
                "userid": 10077
            },
            {
                "name": "Pkbwcgs",
                "userid": 29259446
            },
            {
                "name": "Morogris",
                "userid": 14794526
            },
            {
                "name": "MB",
                "userid": 26021349
            },
            {
                "name": "RichardWeiss",
                "userid": 193093
            },
            {
                "name": "Carcharoth",
                "userid": 165613
            },
            {
                "name": "HJ Mitchell",
                "userid": 9336033
            },
            {
                "name": "Philip Cross",
                "userid": 124152
            },
            {
                "name": "InternetArchiveBot",
                "userid": 27015025
            },
            {
                "name": "RMCD bot",
                "userid": 17216044
            },
            {
                "name": "AnomieBOT",
                "userid": 7611264
            },
            {
                "name": "EvergreenFir",
                "userid": 18474721
            },
            {
                "name": "GreenMeansGo",
                "userid": 24271879
            },
            {
                "name": "EmausBot",
                "userid": 11292982
            },
            {
                "name": "Cydebot",
                "userid": 1215485
            },
            {
                "name": "KylieTastic",
                "userid": 2790592
            },
            {
                "name": "Theroadislong",
                "userid": 2001020
            },
            {
                "name": "RussBot",
                "userid": 279219
            }
        ],
        "anonymous_contributors": 6507
    },
    "meta": {
        "timestamp": "2026-06-13T14:10:03.802Z",
        "request_id": "ee297452-a51c-47fa-b5b4-b42d6c708242"
    },
    "status": "ok",
    "message": "Page contributors retrieved successfully",
    "success": t
…