apiTON
HomeExplorerBlog
HomeExplorerBlog
Contact
  1. v2.Address
  • api:TON Documentation
  • v2.Address
    • Transactions
      POST
    • Details
      POST
    • Jettons
      POST
    • NFTs
      POST
    • Wallets
      POST
  • v2.Nft
    • Username
      POST
    • Number
      POST
    • Domain
      POST
    • Gift
      POST
    • Item
      POST
  • v2.Rate
    • Fiat rate
      POST
    • Crypto rate
      POST
    • Exchanges rate
      POST
  • v2.Auth
    • Do
      POST
    • List
      POST
    • Import
      POST
    • Backup
      POST
    • Delete
      POST
    • New
      POST
  • v2.Wallet
    • Send TON
      POST
    • Send Jetton
      POST
    • Send Nft
      POST
  • v2.NftContract
    • Mint Nft Collection
      POST
    • Mint NFT
      POST
  • v2.JettonContract
    • Mint
    • Burn
    • Change owner
    • Close Mint
  1. v2.Address

Jettons

POST
/v2.Address/Jettons
v1.Address
Get jettons by address

Request

Body Params application/json
address
string 
address
optional
TON blockchain address
>= 8 characters<= 256 characters
Default:
EQAFmjUoZUqKFEBGYFEMbv-m61sFStgAfUR8J6hJDwUU09iT
limit
integer 
limit
optional
<= 100
Default:
10
offset
integer 
offset
optional
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/v2.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
optional
symbol
string 
symbol
optional
balance
number 
balance
optional
content
google.protobuf.Value
optional
Value represents a dynamically typed value which can be either
null, 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.
The JSON representation for Value is JSON value.
master_address
string 
master_address
optional
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
Previous
Details
Next
NFTs
Built with