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

# jetton/wallets | TON v3

> The jetton/wallets endpoint retrieves a list of Jetton wallets from the TON blockchain. Available on TON v3 via Chainstack JSON-RPC nodes.

The `jetton/wallets` endpoint retrieves a list of Jetton wallets from the TON blockchain. Jetton wallets are smart contracts that hold balances of specific Jettons for users. This endpoint allows you to fetch information about various Jetton wallets and provides options for pagination.

<Note>
  **TON billing: full (1 RU)**

  This method is always billed as full. See [Request units — TON method scope](/docs/request-units#ton-method-scope).
</Note>

## Parameters

* `limit` (integer, optional) — The maximum number of Jetton wallets to return. Default: `128`.
* `offset` (integer, optional) — The number of Jetton wallets to skip before starting to return results. Default: `0`.

## Response

* `wallets` (array) — An array of Jetton wallet objects, each containing:
  * `address` (string) — The address of the Jetton wallet.
  * `balance` (string) — The balance of the Jetton wallet.
  * `owner` (string) — The address of the wallet owner.
  * `jetton` (object) — Information about the Jetton:
    * `address` (string) — The address of the Jetton master contract.
    * `name` (string) — The name of the Jetton.
    * `symbol` (string) — The symbol of the Jetton.
    * `decimals` (integer) — The number of decimal places for the Jetton.

## Use case

The `jetton/wallets` endpoint is useful for various applications that need to interact with or display information about Jetton holdings on the TON blockchain:

1. Wallet applications can use this to display users' Jetton balances across different tokens.
2. Decentralized exchanges (DEXs) can fetch users' Jetton wallet information for trading purposes.
3. Analytics platforms can gather data on Jetton distribution and user holdings.
4. Developers can use this endpoint to integrate Jetton wallet information into their dApps or financial services.
5. Portfolio tracking applications can use this to monitor users' Jetton holdings.
6. Compliance tools can use this data to track Jetton transactions and holdings for specific addresses.


## OpenAPI

````yaml openapi/ton_node_api/v3/getJettonWallets.json GET /jetton/wallets
openapi: 3.0.0
info:
  title: TON API
  version: 3.0.0
  description: API for interacting with The Open Network (TON) blockchain
servers:
  - url: >-
      https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3
security: []
paths:
  /jetton/wallets:
    get:
      tags:
        - Jetton
      summary: Get Jetton Wallets
      description: Retrieves a list of Jetton wallets from the TON blockchain
      operationId: getJettonWallets
      parameters:
        - name: limit
          in: query
          description: The maximum number of Jetton wallets to return
          required: false
          schema:
            type: integer
            default: 128
        - name: offset
          in: query
          description: >-
            The number of Jetton wallets to skip before starting to return
            results
          required: false
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  wallets:
                    type: array
                    items:
                      type: object
                      properties:
                        address:
                          type: string
                          description: The address of the Jetton wallet
                        balance:
                          type: string
                          description: The balance of the Jetton wallet
                        owner:
                          type: string
                          description: The address of the wallet owner
                        jetton:
                          type: object
                          properties:
                            address:
                              type: string
                              description: The address of the Jetton master contract
                            name:
                              type: string
                              description: The name of the Jetton
                            symbol:
                              type: string
                              description: The symbol of the Jetton
                            decimals:
                              type: integer
                              description: The number of decimal places for the Jetton

````