WordPress.org provides several API end-points for data about themes and plugins.
For example for plugins there is the plugin_api:
https://developer.wordpress.org/reference/functions/plugins_api/
And the themes API:
https://developer.wordpress.org/reference/functions/themes_api/
But, what about a Support API?
The best option I have so far is to parse data from each forums RSS feed – for example:
https://wordpress.org/support/rss/plugin/export-user-data
But this returns the last 30 replies accross all topics for the specified plugin.
We would like to get
- All the forum topics from the last 3 months
- Each entry in those topics, with info such as author name, date, etc.
Thanks!