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

# Get all labels



## OpenAPI

````yaml https://tokens.swap.coffee/api/v3/openapi.yaml get /api/v3/labels
openapi: 3.0.3
info:
  title: Tokens Service
  version: 3.0.0-beta
servers:
  - url: https://tokens.swap.coffee
  - url: http://localhost:8080
security:
  - {}
  - ApiKey: []
tags:
  - name: Accounts
  - name: Jettons
  - name: Labels
  - name: Contracts
paths:
  /api/v3/labels:
    get:
      tags:
        - Labels
      summary: Get all labels
      operationId: getLabels
      responses:
        '200':
          description: A list of labels
          headers:
            Cache-Control:
              description: Cache control header
              schema:
                type: string
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiJettonLabel'
        default:
          $ref: '#/components/responses/ApiError'
components:
  schemas:
    ApiJettonLabel:
      type: object
      required:
        - label
        - created_at
        - id
      properties:
        label:
          type: string
          example: label
        id:
          type: integer
          example: 1
        created_at:
          type: string
          format: date-time
          example: '2023-10-01T12:00:00Z'
  responses:
    ApiError:
      description: Some error during request processing
      content:
        application/json:
          schema:
            type: object
            required:
              - error
            properties:
              error:
                type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````