> ## 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 top 10 jetton holders



## OpenAPI

````yaml https://tokens.swap.coffee/api/v3/openapi.yaml get /api/v3/jettons/{address}/holders
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/{address}/holders:
    get:
      tags:
        - Jettons
      summary: Get top 10 jetton holders
      operationId: getJettonHolders
      parameters:
        - name: address
          in: path
          required: true
          description: The jetton master address
          schema:
            type: string
      responses:
        '200':
          description: A list of jetton holders
          headers:
            Cache-Control:
              description: Cache control header
              schema:
                type: string
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiJettonWallet'
        default:
          $ref: '#/components/responses/ApiError'
components:
  schemas:
    ApiJettonWallet:
      required:
        - wallet
        - master
        - balance
        - owner
      properties:
        owner:
          type: string
          title: Jetton wallet owner address
          example: UQAp9u76fl9LHztpofaMYP3ersv7yazCwOvl5yB9CQyGL4fW
        wallet:
          type: string
          title: Jetton wallet address
          example: 0:251F2F0038CA380D18FA41B028DEF9774A2B0D9BAF1BBEE70CC7277BFF485E9F
        master:
          type: string
          title: Jetton master address
          example: 0:29F6EEFA7E5F4B1F3B69A1F68C60FDDEAECBFBC9ACC2C0EBE5E7207D090C862F
        balance:
          type: string
          title: Jetton balance in nano units
          example: '1234567890'
  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

````