Tell me more ×
Stack Apps is a question and answer site for apps, scripts, and development with the Stack Exchange API. It's 100% free, no registration required.

In the current api (2.1) how do you get questions that have a specific tag or tags?

e.g.: 1) All stackoverflow questions asked in the past 2 months tagged 'ruby'? 2) All stackoverflow questions asked in the past 2 months tagged 'ruby' and 'git'? 2) All stackoverflow questions asked in the past 2 months tagged 'ruby' or 'git'?

share|improve this question

1 Answer

up vote 1 down vote accepted

For questions tagged with all tags in a list (AND operation), use the /questions path. For example:

/questions#fromdate=2013-01-11&order=desc&sort=activity&tagged=ruby%3Bgit&site=stackoverflow&filter=default
(Scroll to the bottom and press Run. See the top of the page for the documentation for that path.)

~~~~~
For questions tagged with any tags in a list (OR operation), use the /search path. For example:

/search#fromdate=2013-01-11&order=desc&sort=activity&tagged=ruby%3Bgit&site=stackoverflow&filter=default

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged