Skip to main content
GET
/
api
/
v3
/
jetton
/
wallets
Get Jetton Wallets
curl --request GET \
  --url https://toncenter.com/api/v3/jetton/wallets
{
  "address_book": {},
  "jetton_wallets": [
    {
      "address": "<string>",
      "balance": "<string>",
      "code_hash": "<string>",
      "data_hash": "<string>",
      "jetton": "<string>",
      "last_transaction_lt": "0",
      "mintless_info": {
        "amount": "<string>",
        "custom_payload_api_uri": [
          "<string>"
        ],
        "expire_at": 123,
        "start_from": 123
      },
      "owner": "<string>"
    }
  ],
  "metadata": {}
}

SDK Usage

import asyncio

from toncenter.rest import ToncenterRestClient
from toncenter.types import Network

OWNER_ADDRESS = ["EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"]


async def main() -> None:
    async with ToncenterRestClient(network=Network.MAINNET) as client:
        result = await client.v3.jettons.get_jetton_wallets(
            owner_address=OWNER_ADDRESS,
        )
        print(result.model_dump_json(indent=4))


if __name__ == "__main__":
    asyncio.run(main())

Query Parameters

address
string[]

Jetton wallet address in any form. Max: 1000.

owner_address
string[]

Address of Jetton wallet's owner in any form. Max: 1000.

jetton_address
string[]

Jetton Master in any form.

exclude_zero_balance
boolean

Exclude jetton wallets with 0 balance.

limit
integer
default:10

Limit number of queried rows. Use with offset to batch read.

offset
integer
default:0

Skip first N rows. Use with limit to batch read.

sort
enum<string>

Sort jetton wallets by balance. Warning: results may be inconsistent during the read with limit and offset.

Available options:
asc,
desc

Response

OK

address_book
object
jetton_wallets
object[]
metadata
object