- api:TON Documentation
- v1.Address
- v1.Nft
- v1.Rate
- v2.Auth
- v2.Wallet
- v2.NftContract
- v2.JettonContract
Details
POST
/v1.Address/Details
v1.Address
Request
Body Params application/json
address
string
address
>= 8 characters<= 256 characters
Default:
EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT
Example
{
"address": "EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.apiton.org/v1.Address/Details' \
--header 'Content-Type: application/json' \
--data-raw '{
"address": "EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT"
}'
Responses
🟢200OK
application/json
Body
address
object (DetailsAddress)
optional
hex
string
hex
bounceable
string
bounceable
non_bounceable
string
non_bounceable
is_bounced
boolean
is_bounced
ton_balance
number
ton_balance
contract_balance
number
contract_balance
status
string
status
last_transaction_lt
number
last_transaction_lt
address_type
string
address_type
contract_type
array[string]
optional
content
google.protobuf.Value
Value
represents a dynamically typed value which can be eithernull, a number, a string, a boolean, a recursive struct value, or a
list of values. A producer of value is expected to set one of these
variants. Absence of any variant indicates an error.
Value
is JSON value.One of
Examples
{
"address": {
"hex": "0:2f956143c461769579baef2e32cc2d7bc18283f40d20bb03e432cd603ac33ffc",
"bounceable": "EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT",
"non_bounceable": "UQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__I5W"
},
"ton_balance": 195.760969742,
"status": "active",
"last_transaction_lt": "51165356000001",
"address_type": "bounce",
"contract_type": [
"jetton_master"
],
"content": {
"decimals": "9",
"image": "https://cdn.joincommunity.xyz/clicker/not_logo.png",
"name": "Notcoin",
"symbol": "NOT",
"uri": "https://cdn.joincommunity.xyz/clicker/not.json"
}
}
🔴500Server Error