I'm looking into the Wikiloop Battlefield data http://battlefield.wikiloop.org/feed/mix and trying to query the data via the API using revision id.

My attempts appear to return with "badrevids".

Am i using the API incorrectly?


Here is my sample python code...


import requests

S = requests.Session()

URL = "https://www.mediawiki.org/w/api.php"

PARAMS = {
    "action": "query",
    "prop": "revisions",
    "revids": 961090023,
    "rvprop": "ids|timestamp|user|comment|content",
    "rvslots": "main",
    "formatversion": "2",
    "format": "json"
}



R = S.get(url=URL, params=PARAMS)
DATA = R.json()

PAGES = DATA["query"]

for page in PAGES:
    print(page)