Skip to main content
GET
/
v2
/
blockchain
/
accounts
/
{account_id}
/
inspect
cURL
curl --request GET \
  --url https://tonapi.io/v2/blockchain/accounts/{account_id}/inspect
{
  "code": "<string>",
  "code_hash": "<string>",
  "methods": [
    {
      "id": 123,
      "method": "get_something"
    }
  ],
  "compiler": "func",
  "disassembled_code": "<string>"
}

Path Parameters

account_id
string<address>
required

account ID

Example:

"0:97264395BD65A255A429B11326C84128B7D70FFED7949ABAE3036D506BA38621"

Response

blockchain account inspect

code
string<cell>
required
code_hash
string
required
methods
object[]
required
compiler
enum<string>
required
Available options:
func,
fift,
tact
disassembled_code
string
source
object