I'm trying to get all spanish nouns from Wiktionary. I only need the titles, not the meaning of each word. Following other similar posts, I tried this query:
https://en.wiktionary.org/w/api.php?action=query&list=categorymembers&cmtitle=Category:Spanish_nouns&cmprop=title
But it only returns the 10 first:
{
"batchcomplete": "",
"continue": {
"cmcontinue": "page|4142414345524f0a4142414345524f|1173240",
"continue": "-||"
},
"query": {
"categorymembers": [{
"ns": 0,
"title": "aaleniano"
},
{
"ns": 0,
"title": "ab."
},
{
"ns": 0,
"title": "ababa"
},
{
"ns": 0,
"title": "abab\u00e1bite"
},
{
"ns": 0,
"title": "ababol"
},
{
"ns": 0,
"title": "abac\u00e1"
},
{
"ns": 0,
"title": "abacalera"
},
{
"ns": 0,
"title": "abacalero"
},
{
"ns": 0,
"title": "abacera"
},
{
"ns": 0,
"title": "abacer\u00eda"
}
]
}
}
What should I do to get all the noun title's from A to Z?