WalletStates

Get Wallet States

get

Query wallet information

Authorizations
Query parameters
addressstring[]Required

List of addresses in any form to get address book. Max: 1024.

Responses
200
OK
application/json
get
GET /api/v3/walletStates 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"
    }
  },
  "metadata": {
    "ANY_ADDITIONAL_PROPERTY": {
      "is_indexed": true,
      "token_info": [
        {
          "description": "text",
          "extra": {
            "ANY_ADDITIONAL_PROPERTY": "anything"
          },
          "image": "text",
          "name": "text",
          "symbol": "text",
          "type": "text"
        }
      ]
    }
  },
  "wallets": [
    {
      "address": "text",
      "balance": "text",
      "code_hash": "text",
      "extra_currencies": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "is_signature_allowed": true,
      "is_wallet": true,
      "last_transaction_hash": "text",
      "last_transaction_lt": "0",
      "seqno": 1,
      "status": "text",
      "wallet_id": 1,
      "wallet_type": "text"
    }
  ]
}