> ## Documentation Index
> Fetch the complete documentation index at: https://docs.uniblock.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# getWalletInformation

> Retrieves TON wallet information for an account address.

### Parameters

<ParamField query="chainId" type="string" default="toncoin" required>
  Unique identifier for a blockchain network.
</ParamField>

<ParamField body="id" type="number" default={1} required>
  Request identifier used to match responses.
</ParamField>

<ParamField body="jsonrpc" type="string" default="2.0" required>
  JSON-RPC version.
</ParamField>

<ParamField body="method" type="string" default="getWalletInformation" required>
  JSON-RPC method name.
</ParamField>

<ParamField body="params" type="object" default={{"address":"EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"}} placeholder="{&#x22;address&#x22;:&#x22;EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2&#x22;}" required>
  TON wallet lookup request.

  Parameters for <code>getWalletInformation</code>:

  <ul>
    <li><code>params.address</code>: TON account address.</li>
  </ul>
</ParamField>

### Returns

<ResponseField name="result" type="object">
  TON wallet information.

  <Expandable title="properties">
    <ResponseField name="wallet" type="boolean">
      Whether the account is recognized as a wallet.
    </ResponseField>

    <ResponseField name="balance" type="string">
      Wallet balance in nanotons.
    </ResponseField>

    <ResponseField name="account_state" type="string">
      Wallet account state.
    </ResponseField>

    <ResponseField name="wallet_type" type="string">
      Detected wallet contract type.
    </ResponseField>

    <ResponseField name="seqno" type="integer">
      Wallet sequence number, when available.
    </ResponseField>

    <ResponseField name="last_transaction_id" type="object">
      TON internal transaction identifier.

      <Expandable title="properties">
        <ResponseField name="@type" type="string">
          TON object type marker.
        </ResponseField>

        <ResponseField name="lt" type="string">
          Transaction logical time.
        </ResponseField>

        <ResponseField name="hash" type="string">
          Transaction hash.
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="wallet_id" type="integer">
      Wallet ID, when available.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash Curl theme={null}
  curl --request POST \
    --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=toncoin \
    --header 'content-type: application/json' \
    --data '{
      "id": 1,
      "jsonrpc": "2.0",
      "method": "getWalletInformation",
      "params": {
        "address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"
      }
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "jsonrpc": "2.0",
    "id": 1,
    "result": {}
  }
  ```
</ResponseExample>
