Reputation: 21949
How do I get a list of MediaWiki namespaces? Ideally with name and number.
Upvotes: 9
Views: 3330
Reputation: 21949
Use the API: api.php?action=query&meta=siteinfo&siprop=namespaces
For example: http://en.wikipedia.org/w/api.php?action=query&meta=siteinfo&siprop=namespaces
You can also get other formats such as JSON.
See also MediaWiki documentation for more info
Upvotes: 17