Vai al contenuto
GET /v1/user

An editor's profile and stats

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "lang": "en",
        "name": "Jimbo Wales",
        "groups": [
            "extendedconfirmed",
            "founder",
            "reviewer"
        ],
        "is_bot": false,
        "edit_count": 14949,
        "profile_url": "https://en.wikipedia.org/wiki/User:Jimbo_Wales",
        "registration": "2001-03-27T20:47:31Z",
        "account_age_days": 9204
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:14.103Z",
        "request_id": "1805613d-4427-42d7-80b3-afd48e3cd193"
    },
    "status": "ok",
    "message": "User retrieved successfully",
    "success": true
}