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

# List Tags

> Returns every tag defined for the object type given by the required `object` query parameter (one of `contacts`, `accounts`, `opportunities`).



## OpenAPI

````yaml https://api.monaco.com/openapi.json get /v1/tags/
openapi: 3.1.0
info:
  title: Monaco Public API
  description: Public API for Monaco
  version: 1.0.0
servers:
  - url: https://api.monaco.com
security: []
paths:
  /v1/tags/:
    get:
      tags:
        - Tags
      summary: List Tags
      description: >-
        Returns every tag defined for the object type given by the required
        `object` query parameter (one of `contacts`, `accounts`,
        `opportunities`).
      operationId: list_tags
      parameters:
        - name: object
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/TagObject'
            description: Object type to list tags for
          description: Object type to list tags for
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicItemResponse_list_TagResponse__'
              example:
                data:
                  - id: 550e8400-e29b-41d4-a716-446655440000
                    name: Enterprise
                    color: blue
                meta:
                  timestamp: '2026-04-21T12:00:00Z'
        4XX:
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorResponse'
components:
  schemas:
    TagObject:
      type: string
      enum:
        - contacts
        - accounts
        - opportunities
      title: TagObject
      description: Object type a tag applies to, as exposed in the public API.
    PublicItemResponse_list_TagResponse__:
      properties:
        data:
          items:
            $ref: '#/components/schemas/TagResponse'
          type: array
          title: Data
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      type: object
      required:
        - data
      title: PublicItemResponse[list[TagResponse]]
    PublicErrorResponse:
      properties:
        error:
          $ref: '#/components/schemas/ErrorDetail'
      type: object
      required:
        - error
      title: PublicErrorResponse
    TagResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Unique identifier for the tag
        name:
          type: string
          title: Name
          description: Display name of the tag
          examples:
            - Enterprise
        color:
          anyOf:
            - type: string
            - type: 'null'
          title: Color
          description: Display color of the tag
          examples:
            - blue
      type: object
      required:
        - id
        - name
      title: TagResponse
    ResponseMeta:
      properties:
        timestamp:
          type: string
          format: date-time
          title: Timestamp
          description: Server timestamp of the response
      type: object
      title: ResponseMeta
    ErrorDetail:
      properties:
        code:
          type: string
          title: Code
          description: Machine-readable error code
          examples:
            - not_found
        message:
          type: string
          title: Message
          description: Human-readable error message
          examples:
            - Resource not found
      type: object
      required:
        - code
        - message
      title: ErrorDetail

````