wikimedia exposes a REST interface: https://wikimedia.org/api/rest_v1/#/
It looks like results are limited to 5k items with pagination. In such cases, you get a next
value like the following:
Object {
items: Array(5000) [Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, …]
next: "AAAAJAAKMjAxNjAxMjUwNwAAEBOBQAAd0hGygICAgICAgIAAAAF2AH//7Hd//+x3"
}
The spec doesn't say anything about how to use it to get the next page. What should be the "next" call?
pun intended :)