Μετάβαση στο περιεχόμενο
GET /v1/activity

A wiki's live recent-changes feed

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/fandom-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "wiki": "starwars",
        "count": 15,
        "source": "Fandom",
        "changes": [
            {
                "type": "edit",
                "user": "あざした",
                "title": "Dragonsnake",
                "comment": null,
                "is_minor": true,
                "timestamp": "2026-06-10T13:48:09Z",
                "new_length": 10943,
                "is_new_page": false,
                "size_change": 0
            },
            {
                "type": "edit",
                "user": "DokTayss",
                "title": "Category:Jedi Battlemasters",
                "comment": null,
                "is_minor": false,
                "timestamp": "2026-06-10T13:27:59Z",
                "new_length": 249,
                "is_new_page": false,
                "size_change": 6
            },
            {
                "type": "edit",
                "user": "Rsand 30",
                "title": "Thrawn, Vol. 1",
                "comment": "/* Appearances */",
                "is_minor": false,
                "timestamp": "2026-06-10T13:24:38Z",
                "new_length": 6632,
                "is_new_page": false,
                "size_change": -936
            },
            {
                "type": "edit",
                "user": "Rsand 30",
                "title": "Thrawn, Vol. 1",
                "comment": null,
                "is_minor": false,
                "timestamp": "2026-06-10T13:24:23Z",
                "new_length": 7568,
                "is_new_page": false,
                "size_change": -29
            },
            {
                "type": "edit",
                "user": "Garde impérial",
                "title": "Pinedriller",
                "comment": "Updating interlanguage links ([[w:c:starwars:Wookieepedia:HotCat|script]])",
                "is_minor": true,
                "timestamp": "2026-06-10T13:19:25Z",
                "new_length": 1598,
                "is_new_page": false,
                "size_change": 32
            },
            {
                "type": "edit",
                "user": "あざした",
                "title": "Earth (disambiguation)",
                "comment": null,
                "is_minor": true,
                "timestamp": "2026-06-10T12:55:09Z",
                "new_length": 751,
                "is_new_page": false,
                "size_change": 53
            },
            {
                "type": "edit",
                "user": "あざした",
                "title": "Drink cart",
                "comment": null,
                "is_minor": true,
                "timestamp": "2026-06-10T12:53:24Z",
                "new_length": 1615,
                "is_new_page": false,
                "size_change": -44
            },
            {
                "type": "edit",
                "user": "あざした",
                "title": "Unidentified Twi'lek casino worker",
                "comment": "there is no earth in canon",
                
…