Usage of /users/{ids}/tags GET
Discussion
Returns the tags the users identified in {ids} have been active in.
This route corresponds roughly to a user's stats tab, but does not include tag scores. A subset of tag scores are available (on a single user basis) in /users/{id}/top-answer-tags and /users/{id}/top-question-tags.
{ids} can contain up to 100 semicolon delimited ids. To find ids programmatically look for user_id on user or shallow_user objects.
The sorts accepted by this method operate on the following fields of the tag object:
- popular – 
count - activity – the 
creation_dateof the last question asked with the tag - name – 
name 
popular is the default sort.It is possible to create moderately complex queries using
sort, min, max, fromdate, and todate.
    
    
    This method returns a list of tags.
Try It