GET /api/tags/latest
Get 100 tags for the current user sorted from newest to oldest

Examples

GET /api/tags/latest
200
[
  "newer-tag",
  "older-tag"
]

GET /api/current_user_tags
Get 100 tags for the current user sorted from newest to oldest, each tag prefixed with @

Examples

GET /api/current_user_tags
200
[
  "@newer-tag",
  "@older-tag"
]