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

# getAddressInformation | TON v2

> The getAddressInformation method retrieves information about a specific address on the TON blockchain. Chainstack TON v2 reference.

The `getAddressInformation` method retrieves information about a specific address on the TON blockchain. This includes details such as the balance, state, code, and data associated with the address, as well as the last transaction ID.

<Note>
  **TON billing: full (1 RU)**

  This method is always billed as full. See [Request units — TON method scope](/docs/request-units#ton-method-scope).
</Note>

## Parameters

* `address` (string, required) — The address for which information is being requested. Example: `EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2`.
* `seqno` (int, optional) — the Masterchain seqno. You can get the Masterchain seqno with [getMasterchainInfo | TON v2](/reference/ton-getmasterchaininfo-v2).

Example with `seqno`:

```shell Shell theme={"system"}
curl --request GET \
     --url 'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v2/getAddressInformation?address=EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2&seqno=45792554' \
     --header 'accept: application/json'
```

## JSON-RPC example

```shell Shell theme={"system"}
curl -X POST \
  'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v2/jsonRPC' \
  -H 'Content-Type: application/json' \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "getAddressInformation",
    "params": {
      "address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"
    }
  }'
```

## Response

* `balance` (string) — The balance of the address.
* `state` (string) — The state of the address.
* `code` (string) — The code of the address.
* `data` (string) — The data of the address.
* `last_transaction_id` (object) — The last transaction ID, containing:
  * `lt` (string) — The logical time of the last transaction.
  * `hash` (string) — The hash of the last transaction.
* `error` (object) — Error information, if any.
* `id` (integer) — The request ID.

## Use case

A possible use case for the `getAddressInformation` method in TON is for applications that need to display or utilize the current state and balance of a specific address. For example, a wallet application may use this method to show the user's balance and transaction history.


## OpenAPI

````yaml openapi/ton_node_api/v2/getAddressInformation.json GET /getAddressInformation
openapi: 3.0.0
info:
  title: getAddressInformation example
  version: 1.0.0
  description: >-
    This is an API example for getAddressInformation, a method to retrieve
    information about a specific address on the TON blockchain.
servers:
  - url: >-
      https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v2
security: []
paths:
  /getAddressInformation:
    get:
      tags:
        - TON Operations
      summary: getAddressInformation
      operationId: getAddressInformation
      parameters:
        - name: address
          in: query
          required: true
          description: The address to get information for
          schema:
            type: string
            default: EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2
          example: EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2
      responses:
        '200':
          description: Information about the specified address
          content:
            application/json:
              schema:
                type: object
                properties:
                  balance:
                    type: string
                    description: The balance of the address
                  state:
                    type: string
                    description: The state of the address
                  code:
                    type: string
                    description: The code of the address
                  data:
                    type: string
                    description: The data of the address
                  last_transaction_id:
                    type: object
                    properties:
                      lt:
                        type: string
                        description: The logical time of the last transaction
                      hash:
                        type: string
                        description: The hash of the last transaction
                  error:
                    type: object
                  id:
                    type: integer

````