Search code examples
mediawiki-api

What query to wikimedia api allow to get article categories?


Many articles of Wikipedia contains categories, for example article Mathematics labeled as

enter image description here

I try next API query:

https://en.wikipedia.org/w/api.php?action=query&titles=mathematics&prop=categories

but it returns other categories...

  1. What query to wikimedia api allow to get article categories (topics)?

  2. How I can get information about this categories hierarchy?


Solution

  • You're seeing hidden categories. You can tell the API to not fetch hidden categories using the &clshow=!hidden option:

    https://en.wikipedia.org/w/api.php?action=query&titles=mathematics&prop=categories&clshow=!hidden