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

NFTs

POST
/v2.Address/Nfts
v1.Address
Get NFTs by address

Request

Body Params application/json
address
string 
address
optional
TON blockchain address
>= 8 characters<= 256 characters
Default:
foundation.ton
limit
integer 
limit
optional
<= 100
Default:
10
offset
integer 
offset
optional
Default:
0
Example
{
    "address": "UQCdqXGvONLwOr3zCNX5FjapflorB6ZsOdcdfLrjsDLt3AF4",
    "limit": "1",
    "offset": "8"
}

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/Nfts' \
--header 'Content-Type: application/json' \
--data-raw '{
    "address": "UQCdqXGvONLwOr3zCNX5FjapflorB6ZsOdcdfLrjsDLt3AF4",
    "limit": "1",
    "offset": "8"
}'

Responses

🟢200OK
application/json
Body
result
array[object (NftItem) {4}] 
optional
address
string 
address
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.
index
string 
index
optional
collection_address
string 
collection_address
optional
string OwnerAddress = 5;
Example
{
    "result": [
        {
            "address": "UQDr5nMy8PFl1laCAc_vzecloxC4sVG5qjk9j6EsjDMFAVmh",
            "content": {
                "uri": "https://s.getgems.io/nft/c/6286e4149e7aeee439741a29/118.json"
            },
            "index": "118",
            "collection_address": "UQBDLUE8wS7K82cS_hCz8fnVVU4VgiQOqa5b1TFDDCIwKjkv"
        }
    ]
}
🔴500Server Error
Previous
Jettons
Next
Wallets
Built with