- api:TON Documentation
- v1.Address
- v1.Nft
- v1.Rate
- v2.Auth
- v2.Wallet
- v2.NftContract
- v2.JettonContract
Jettons
POST
/v1.Address/Jettons
v1.Address
Request
Body Params application/json
address
string
address
>= 8 characters<= 256 characters
Default:
EQAFmjUoZUqKFEBGYFEMbv-m61sFStgAfUR8J6hJDwUU09iT
limit
integer
limit
<= 100
Default:
10
offset
integer
offset
Default:
0
Example
{
"address": "EQAFmjUoZUqKFEBGYFEMbv-m61sFStgAfUR8J6hJDwUU09iT",
"limit": "10",
"offset": "0"
}
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/Jettons' \
--header 'Content-Type: application/json' \
--data-raw '{
"address": "EQAFmjUoZUqKFEBGYFEMbv-m61sFStgAfUR8J6hJDwUU09iT",
"limit": "10",
"offset": "0"
}'
Responses
🟢200OK
application/json
Body
result
array[object (Jetton) {5}]
optional
address
string
address
symbol
string
symbol
balance
number
balance
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.master_address
string
master_address
Example
{
"result": [
{
"address": "UQC_lZX7J7IipDbpdiO7GuQeEqMKcj6x2rnfQQ9Rm8FhCljN",
"symbol": "TONBULL",
"balance": 10000000,
"content": {
"decimals": "9",
"image": "https://i.postimg.cc/W4y53Zt2/IMG-20240327-174927-521.png",
"name": "TON BULL",
"symbol": "TONBULL"
},
"master_address": "UQDsJPo7tniAk3zGxqiHeIQZf4blkfuK7N5njp0fUytN00Cy"
}
]
}
🔴500Server Error