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

# List labels

> List labels available in the workspace.

Returns label identifiers, names, and parent relationships for the authenticated workspace. Use each label's `id` with the assign and remove endpoints.


## OpenAPI

````yaml GET /v1/labels/list
openapi: 3.1.0
info:
  title: Amplify Customer API
  version: 1.0.0
  description: |-
    Canonical contract for the Amplify customer-facing API. This YAML file is
    the source of truth for Postman and Mintlify. Operations marked with
    x-amplify-validation-status: pending were migrated from the legacy Postman
    collection and must be validated before their contract is considered final.
servers:
  - url: https://api.amplify.xyz
    description: Production
  - url: https://dev-api.amplify.xyz
    description: Development
security: []
tags:
  - name: Authentication
  - name: Fax
  - name: Send Faxes
  - name: Receive Faxes
  - name: Manage Faxes
  - name: Workspace
  - name: Numbers
  - name: Contacts
  - name: Documents
  - name: Templates
paths:
  /v1/labels/list:
    get:
      tags:
        - Workspace
      summary: List labels
      description: Returns the labels available in the authenticated workspace.
      operationId: getv1LabelsList
      responses:
        '200':
          description: Labels retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  status:
                    type: integer
                  data:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - name
                        - parent
                      properties:
                        id:
                          type: integer
                          description: Numeric label identifier.
                        name:
                          type: string
                          description: Display name of the label.
                        parent:
                          type: integer
                          description: >-
                            Parent label identifier, or `0` for a top-level
                            label.
              example:
                status: 1
                data:
                  - id: 598
                    name: Priority
                    parent: 0
                  - id: 744
                    name: Tier 1
                    parent: 0
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````