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

# List labels

> Returns all labels defined on the number identified by the `{instance}` path parameter (the number's display name).



## OpenAPI

````yaml openapi.evolution-v2.json GET /label/findLabels/{instance}
openapi: 3.1.0
info:
  title: Evolution V2 Layer
  version: 1.0.0
  description: >-
    Pilot Status API Layer — Evolution V2. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-v2`. Authenticate with the
    `apikey` header (your Pilot Status `ps_` key). Instance/session endpoints
    are NOT available through the layer.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-v2
security:
  - apiKey: []
tags:
  - name: Call & Business
  - name: Chat
  - name: Group
  - name: Label
  - name: Message
  - name: Profile
  - name: Settings & Proxy
  - name: Storage (S3)
  - name: Template
paths:
  /label/findLabels/{instance}:
    get:
      tags:
        - Label
      summary: List labels
      description: >-
        Returns all labels defined on the number identified by the `{instance}`
        path parameter (the number's display name).
      operationId: get__label_findLabels_instance
      parameters:
        - name: instance
          in: path
          required: true
          schema:
            type: string
          description: The number's display name in the Pilot Status dashboard.
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: array
                description: List of labels saved for the instance.
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: The WhatsApp label id (labelId).
                    name:
                      type: string
                      description: Display name of the label.
                    color:
                      type: string
                      description: Label color code (WhatsApp palette index as string).
                    predefinedId:
                      type:
                        - string
                        - 'null'
                      description: >-
                        Identifier of the predefined WhatsApp label, when the
                        label is one of the built-in defaults; null otherwise.
              example:
                - id: '1'
                  name: New customer
                  color: '0'
                  predefinedId: '1'
                - id: '2'
                  name: Paid
                  color: '5'
                  predefinedId: '4'
                - id: '18'
                  name: Follow up
                  color: '9'
                  predefinedId: null
        default:
          description: Error — provider or layer error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                  response:
                    type: object
              example:
                status: 400
                error: Bad Request
                message: Invalid payload
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Your Pilot Status API key (ps_...). Evolution GO also accepts
        `Authorization: Bearer <key>`.

````