> ## Documentation Index
> Fetch the complete documentation index at: https://docs.utmkit.co/llms.txt
> Use this file to discover all available pages before exploring further.

# List the tags of the token's workspace, with their link counts

> Requires a token with the `links:read` permission.



## OpenAPI

````yaml /openapi.json get /api/v1/tags
openapi: 3.0.0
info:
  description: >-
    Every request carries `Authorization: Bearer utmk_…`. The token fixes the
    workspace; no request names one. Every operation declares `x-permission`,
    the token permission it requires.
  title: UTM Builder API
  version: '1'
servers:
  - url: https://app.utmkit.co
    variables: {}
security:
  - bearer: []
tags: []
paths:
  /api/v1/tags:
    get:
      tags:
        - tags
      summary: List the tags of the token's workspace, with their link counts
      description: Requires a token with the `links:read` permission.
      operationId: UtmBuilderWeb.API.V1.TagController.index
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagList'
          description: Tags
      callbacks: {}
components:
  schemas:
    TagList:
      properties:
        data:
          items:
            $ref: '#/components/schemas/Tag'
          type: array
      title: TagList
      type: object
    Tag:
      properties:
        color:
          type: string
        created_at:
          format: date-time
          type: string
        id:
          type: integer
        link_count:
          type: integer
        name:
          type: string
      title: Tag
      type: object
  securitySchemes:
    bearer:
      description: utmk_<lookup><secret>, minted on /tokens
      scheme: bearer
      type: http

````