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

# List tags

> List all tags available to the authenticated user. Optionally filter by record type. Contacts use household tags, so record_type=household returns tags usable for both households and contacts.



## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/tags
openapi: 3.0.1
info:
  title: Slant Public API V1
  version: v1
  description: Public API for creating and managing resources in Slant
  contact:
    name: Slant API Support
    email: api@slant.com
servers:
  - url: https://api.slant.app
security:
  - bearer: []
paths:
  /v1/tags:
    get:
      tags:
        - Tags
      summary: List tags
      description: >-
        List all tags available to the authenticated user. Optionally filter by
        record type. Contacts use household tags, so record_type=household
        returns tags usable for both households and contacts.
      parameters:
        - name: record_type
          in: query
          required: false
          description: >-
            Filter tags by the type of record they apply to. Use household for
            household and contact tags.
          example: household
          schema:
            type: string
            enum:
              - household
              - task
              - business
              - opportunity
              - note
      responses:
        '200':
          description: successful with record_type filter
          content:
            application/json:
              schema:
                type: object
                required:
                  - tags
                properties:
                  tags:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - name
                      properties:
                        id:
                          type: string
                          description: The tag ID
                          example: def456
                        name:
                          type: string
                          description: The tag name
                          example: Urgent
        '400':
          description: bad request - invalid JSON
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                  - detail
                properties:
                  error:
                    type: string
                    description: Error code
                    enum:
                      - invalid_json
                  detail:
                    oneOf:
                      - type: string
                        description: Human-readable error description
                      - type: array
                        items:
                          type: string
                        description: Array of validation error messages
        '401':
          description: unauthorized - missing or invalid token
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                  - detail
                properties:
                  error:
                    type: string
                    description: Error code
                    enum:
                      - token_missing
                      - token_invalid
                  detail:
                    oneOf:
                      - type: string
                        description: Human-readable error description
                      - type: array
                        items:
                          type: string
                        description: Array of validation error messages
        '403':
          description: forbidden
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      bearerFormat: OAuth
      description: OAuth 2.0 Bearer Token from Clerk authentication

````