# List all tags

You can return a list of all your tags.

GET /tags/

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2"
"https://<your_app_subdomain>.user.com/api/public/tags/"

# Response

{
  "next": null,
  "count": 2,
  "results": [
    {
      "name": "My tag",
      "id": 6
    },
    {
      "name": "some updated tag",
      "id": 9
    }
  ],
  "previous": null
}