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

# List Tags

> List the tags of a project. Tags include user-created tags and Peec-managed system tags (is_system=true). System tags carry a `group` identifying their mutually-exclusive dimension (branding or intentType) and are auto-assigned to prompts; they cannot be edited or deleted.



## OpenAPI

````yaml https://api.peec.ai/customer/v1/openapi/json get /tags
openapi: 3.0.3
info:
  title: Peec AI Customer API
  description: Development documentation
  version: 1.0.0
  contact:
    name: Peec AI Team
    email: support@peec.ai
servers:
  - url: https://api.peec.ai/customer/v1
security: []
paths:
  /tags:
    get:
      tags:
        - Project
      summary: List Tags
      description: >-
        List the tags of a project. Tags include user-created tags and
        Peec-managed system tags (is_system=true). System tags carry a `group`
        identifying their mutually-exclusive dimension (branding or intentType)
        and are auto-assigned to prompts; they cannot be edited or deleted.
      operationId: getTags
      parameters:
        - name: project_id
          in: query
          required: false
          schema:
            description: Required if using a company api key
            example: or_f45b94ba-5e35-4982-93ed-285e72ee14eb
            type: string
        - name: limit
          in: query
          required: false
          schema:
            default: 1000
            type: number
            minimum: 1
            maximum: 10000
        - name: offset
          in: query
          required: false
          schema:
            default: 0
            type: number
            minimum: 0
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          example: tg_23abec5b-100a-4261-9ee7-1effe68f0149
                        name:
                          type: string
                          example: SEO
                        is_system:
                          example: false
                          description: >-
                            Whether this is a system tag. System tags are
                            maintained by Peec and auto-assigned to every prompt
                            by its branding/intent classification; they cannot
                            be created, edited, or deleted, but can be assigned
                            to prompts.
                          type: boolean
                        group:
                          nullable: true
                          example: branding
                          description: >-
                            The mutually-exclusive group a system tag belongs
                            to, or null for user-created tags. "branding"
                            (branded / non-branded) or "intentType"
                            (informational / commercial / transactional). Every
                            prompt carries exactly one tag per group.
                          type: string
                          enum:
                            - branding
                            - intentType
                      required:
                        - id
                        - name
                        - group
                  total_count:
                    type: number
                    example: 42
                    description: Total number of matching tags, ignoring pagination
                  totalCount:
                    type: number
                    example: 42
                    description: Total number of matching tags, ignoring pagination
                    deprecated: true
                required:
                  - data
                  - total_count
                  - totalCount
                description: Success
      security:
        - APIKeyHeader: []
        - APIKeyQuery: []
        - BearerAuth: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    APIKeyQuery:
      type: apiKey
      in: query
      name: api_key
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````