I am interested in the getting a list of the question based on a tag or a search query. I will give you an example.
So If I use the search keyword as \"ipv4\", it sh
Stackexchange offers https://api.stackexchange.com/docs/advanced-search endpoint.
So for example, get on
https://api.stackexchange.com/search/advanced?site=stackoverflow.com&q=firebase
would return you something like this:
This is simplest example but as you will find in the docs, there are numerous parameters based on which search can be performed. Some of them are:
Hope this helps!
Cheers!