Tagged Questions
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
1answer
34 views
Is there any way we could have more information about tags in /questions?
In the /tags route, the following information is returned for a specific tag:
{
"name": "c#",
"count": 262613,
"is_required": false,
"is_moderator_only": false,
"has_synonyms": true
}
...
3
votes
1answer
28 views
Could the /tags API return minimal information about synonyms?
It would be very helpful if the /tags API could provide at least a bare minimum of information about tag synonyms. Either:
Number of synonyms the tag has, if any.
Or a true/false flag for tags which ...
1
vote
2answers
32 views
How about a regex filter in the tags API?
The tags API has a "filter" parameter but it only matches the exact substring in the parameter in the tags.
On Travel we have one kind of tags, IATA airport codes (SYD for Sydney, SFO for San ...
3
votes
1answer
34 views
Is there an API to fetch tags related to a given tag?
I'm interested in making a tool that explores the tags of a site for tags which should be merged or mention each other in tag wikis etc.
On the page of any given tag there is a column on the right of ...
2
votes
1answer
22 views
Get a list of required tags for site
How can I get the tags which are required, (fulfills_required = true) for each site?
Like order/filter the tags route to show the fulfills_required tags first?
2
votes
0answers
30 views
Query Tag followers?
I was hoping to use the APIs to discover the number of questions for a given Tag as well as the number of followers. I found how to get the number of questions, but not the number of followers. On ...
4
votes
1answer
94 views
/users/tags should contain scores
I am implementing some simple JavaScript/bookmarklet based apps that show some reputation info, including the score in the User's top tags (roughly based on this previous bookmarklet of mine).
Now I ...
0
votes
0answers
93 views
API request to query all tags / taxonomy of languages based on filter param?
Looking through the api docs it would seem that pretty much everything is there except something I wanted to investigate if it would be possible to do. Which is to query the stackoverflow taxonomy ( ...
0
votes
1answer
113 views
Include tag “objects” in questions
getting a question returns among other things an array of tag names, it would be better if it return a whole tag "object" in other words: the count and fulfills_required (okay maybe not the fulfills ...
2
votes
1answer
50 views
Any way for /tags to provide unanswered count?
I am trying to get a count of unanswered questions by tag. Basically if there was an 'unanswered-count' in addition to the 'count' property of the /tags response that would be perfect.
It has been ...