/v1/page-contributors
The editors who built an article
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/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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
…