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

# List Tags

> Retrieves a list of all tags.



## OpenAPI

````yaml get /tags
openapi: 3.0.0
info:
  title: KIMP360 API
  version: 1.0.0
servers:
  - url: https://api.kimp360.com
security:
  - ApiKeyAuth: []
paths:
  /tags:
    get:
      summary: List Tags
      description: Retrieves a list of all tags.
      responses:
        '200':
          description: A list of tags
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Tag'
components:
  schemas:
    Tag:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        bg_color:
          type: string
        text_color:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````