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

# Import a jetton. If no verification is provided, the jetton will be marked according to our own whitelist.



## OpenAPI

````yaml https://tokens.swap.coffee/api/v3/openapi.yaml post /api/v3/jettons/import
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/jettons/import:
    post:
      tags:
        - Jettons
      summary: >-
        Import a jetton. If no verification is provided, the jetton will be
        marked according to our own whitelist.
      operationId: importJetton
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiJettonImportRequest'
      responses:
        '200':
          description: Jetton imported successfully
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        default:
          $ref: '#/components/responses/ApiError'
components:
  schemas:
    ApiJettonImportRequest:
      type: object
      required:
        - address
      properties:
        address:
          type: string
          example: 0:a5d12e31be87867851a28d3ce271203c8fa1a28ae826256e73c506d94d49edad
        verification:
          $ref: '#/components/schemas/ApiJettonVerification'
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          example: error description
    ApiJettonVerification:
      type: string
      enum:
        - BLACKLISTED
        - UNKNOWN
        - COMMUNITY
        - WHITELISTED
  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

````