I'm having some custom keywords/tags (technical keywords which are dynamically generated by a Machine Learning module). Example: MVC, aws, etc... So what I need is to check whether that particular tag exists in stack exchange API. Through following REST route, I'm able to get the tags but need to change the query string parameter 'page' manually.
https://api.stackexchange.com/2.2/tags?order=desc&sort=popular&site=stackoverflow&page=
Without that by calling an API or similar, is it possible to check whether my custom keyword is technical or not? It doesn't have to be StackExchange but something similar is also will be helpful. I tried https://developers.google.com/custom-search/ also but I'm having problems with finalizing the approach. Any suggestions?