> ## 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/transfers | TON v3

> The jetton/transfers endpoint retrieves a list of Jetton transfers from the TON blockchain. jetton/transfers on TON v3 via Chainstack.

The `jetton/transfers` endpoint retrieves a list of Jetton transfers from the TON blockchain. This endpoint allows you to fetch information about Jetton transfer activities and provides options for filtering, pagination, and sorting.

<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

* `direction` (string, required) — The direction of transfers to retrieve. Possible values: `in`, `out`, or `both`. Default: `both`.
* `limit` (integer, optional) — The maximum number of transfers to return. Default: `128`.
* `offset` (integer, optional) — The number of transfers to skip before starting to return results. Default: `0`.
* `sort` (string, optional) — The sorting order of the transfers. Possible values: `asc` (ascending) or `desc` (descending). Default: `desc`.

## Response

* `transfers` (array) — An array of Jetton transfer objects, each containing:
  * `jetton` (object) — Information about the transferred Jetton:
    * `address` (string) — The address of the Jetton master contract.
    * `name` (string) — The name of the Jetton.
    * `symbol` (string) — The symbol of the Jetton.
  * `from` (object) — Information about the sender:
    * `address` (string) — The address of the sender.
  * `to` (object) — Information about the recipient:
    * `address` (string) — The address of the recipient.
  * `transaction` (object) — Information about the transaction:
    * `hash` (string) — The hash of the transaction.
    * `time` (integer) — The timestamp of the transaction.
  * `amount` (string) — The amount of Jettons transferred.
  * `comment` (string) — Any comment attached to the transfer.

## Use case

The `jetton/transfers` endpoint is useful for various applications that need to track or analyze Jetton transfer activities on the TON blockchain:

1. Wallet applications can show users their history of Jetton transactions.
2. Decentralized exchanges (DEXs) can use this to display recent trades or transfers of Jettons.
3. Analytics platforms can track Jetton transfer patterns, popular tokens, and market trends.
4. Developers can use this endpoint to build notification systems for Jetton transfers.
5. Compliance tools can use this data to monitor large transfers or specific addresses.
6. Portfolio tracking applications can use this to update users' Jetton balances in real-time.


## OpenAPI

````yaml openapi/ton_node_api/v3/getJettonTransfers.json GET /jetton/transfers
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/transfers:
    get:
      tags:
        - Jetton
      summary: Get Jetton Transfers
      description: Retrieves a list of Jetton transfers from the TON blockchain
      operationId: getJettonTransfers
      parameters:
        - name: direction
          in: query
          description: The direction of transfers to retrieve
          required: true
          schema:
            type: string
            enum:
              - in
              - out
              - both
            default: both
        - name: limit
          in: query
          description: The maximum number of transfers to return
          required: false
          schema:
            type: integer
            default: 128
        - name: offset
          in: query
          description: The number of transfers to skip before starting to return results
          required: false
          schema:
            type: integer
            default: 0
        - name: sort
          in: query
          description: The sorting order of the transfers
          required: false
          schema:
            type: string
            enum:
              - asc
              - desc
            default: desc
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  transfers:
                    type: array
                    items:
                      type: object
                      properties:
                        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
                        from:
                          type: object
                          properties:
                            address:
                              type: string
                              description: The address of the sender
                        to:
                          type: object
                          properties:
                            address:
                              type: string
                              description: The address of the recipient
                        transaction:
                          type: object
                          properties:
                            hash:
                              type: string
                              description: The hash of the transaction
                            time:
                              type: integer
                              description: The timestamp of the transaction
                        amount:
                          type: string
                          description: The amount of Jettons transferred
                        comment:
                          type: string
                          description: Any comment attached to the transfer

````