> ## 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.

# Remove a label from a jetton



## OpenAPI

````yaml https://tokens.swap.coffee/api/v3/openapi.yaml delete /api/v3/labels/{address}
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/{address}:
    delete:
      tags:
        - Labels
      summary: Remove a label from a jetton
      operationId: removeLabelFromJetton
      parameters:
        - name: address
          in: path
          required: true
          description: The jetton master address
          schema:
            type: string
        - name: label
          in: path
          required: true
          description: The label to remove from the jetton
          schema:
            type: string
      responses:
        '200':
          description: Label removed successfully
        '404':
          description: Jetton not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        default:
          $ref: '#/components/responses/ApiError'
components:
  schemas:
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          example: error description
  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

````