1
vote
1answer
19 views

Getting questions that have a specific tag or tags?

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 ...
2
votes
0answers
17 views

How do I get the no. of upvotes a person has received for a particular tag?

I need the list of users who have more than 10K reputation and then among those users I need to see which user has how many up-votes for each tag. I don't there is a direct query that will give me ...
0
votes
0answers
10 views

How to tell if a given tag name is a synonym?

I've found in one of my projects that I sometimes have a string that I need to check as to whether it's a tag or a tag synonym. To check if it's a tag synonym is easy using /tags/{tags}/info I can ...
1
vote
0answers
20 views

Are “api-key” and “app-key” the same thing?

When tagging my last couple of questions about registering for a key I noticed there are two similar-looking tags: api-key - 17 uses and a tag wiki app-key - 8 uses, no tag wiki Do they ...
1
vote
1answer
31 views

how to use tags/{tags}/related

I am new to stackapps. I am wondering how to apply /tags/{tags}/related to more than one tags. The documentation does not give an example. I tried /2.0/tags/c,java/related?site=stackoverflow, ...
5
votes
1answer
43 views

Can you access a user's tag reputation/score via the API?

Is it possible to retrieve a user's tag specific reputation/score via the API? If not, is it possible to make an API call that returns enough information that you can calculate the value?
-1
votes
1answer
87 views

How to get technical skills tags using API

I have a requirement in my application to show the skills in auto-complete format like the stack overflow has. is there any example to get the tags from stack overflow using JavaScript + JSON. kindly ...
1
vote
1answer
31 views

API to get the small tag info displayed in the popup

I do not know if this is possible, or if this is even prohibited, but here goes. I am creating a website where I talk a lot about the web and different programming languages. Now I want to create ...
3
votes
1answer
288 views

List all tags in use on stackoverflow

I am trying to list all tags used on stackoverflow here: http://api.stackoverflow.com/1.1/usage/methods/tags and I cannot seem to list all. How do I do it?.
2
votes
1answer
208 views

Retrieving list of c# questions

I am trying to retrieve list of c# questions using http://api.stackoverflow.com/1.0/questions?title=true&tagged="c#". But I get JSON response related to c questions. Response : { "total": ...
1
vote
0answers
54 views

Maximum tags for a question on any SE site

Is the maximum tags for all SE sites (and those in the future) 5?
2
votes
1answer
82 views

Maximum tag name length?

Does this exist? Or it is again just the "suggested size" with no hard limits? Im trying to figure out how to best store them in a database.
2
votes
2answers
110 views

How to mimic search behavior of Stack sites?

I want to mimic the behavior of the search field that can be found on all Stack sites. How should I do this? Filter by tags if all words (how exactly is this detected?) in the query are tags. ...