Wallets

Get Jetton Wallets

get

Get Jetton wallets by specified filters

Authorizations
Query parameters
addressstring[]Optional

Jetton wallet address in any form. Max: 1000.

owner_addressstring[]Optional

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

jetton_addressstring[]Optional

Jetton Master in any form.

exclude_zero_balancebooleanOptional

Exclude jetton wallets with 0 balance.

limitinteger · min: 1 · max: 1000Optional

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

offsetintegerOptional

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

sortstring · enumOptional

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

Possible values:
Responses
200
OK
application/json
get
GET /api/v3/jetton/wallets HTTP/1.1
Host: ton-index.nownodes.io
X-Api-Key: YOUR_API_KEY
Accept: */*
{
  "address_book": {
    "ANY_ADDITIONAL_PROPERTY": {
      "domain": "text",
      "user_friendly": "text"
    }
  },
  "jetton_wallets": [
    {
      "address": "text",
      "balance": "text",
      "code_hash": "text",
      "data_hash": "text",
      "jetton": "text",
      "last_transaction_lt": "0",
      "mintless_info": {
        "amount": "text",
        "custom_payload_api_uri": [
          "text"
        ],
        "expire_at": 1,
        "start_from": 1
      },
      "owner": "text"
    }
  ],
  "metadata": {
    "ANY_ADDITIONAL_PROPERTY": {
      "is_indexed": true,
      "token_info": [
        {
          "description": "text",
          "extra": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "image": "text",
          "name": "text",
          "symbol": "text",
          "type": "text"
        }
      ]
    }
  }
}