AccountStates

Get Account States

get

Query account states

Authorizations
Query parameters
addressstring[]Required

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

include_bocbooleanOptional

Include code and data BOCs. Default: true

Responses
200
OK
application/json
get
GET /api/v3/accountStates HTTP/1.1
Host: ton-index.nownodes.io
X-Api-Key: YOUR_API_KEY
Accept: */*
{
  "accounts": [
    {
      "account_state_hash": "text",
      "address": "text",
      "balance": "text",
      "code_boc": "text",
      "code_hash": "text",
      "data_boc": "text",
      "data_hash": "text",
      "extra_currencies": {
        "ANY_ADDITIONAL_PROPERTY": "text"
      },
      "frozen_hash": "text",
      "last_transaction_hash": "text",
      "last_transaction_lt": "0",
      "status": "text"
    }
  ],
  "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"
        }
      ]
    }
  }
}