- api:TON Documentation
- v1.Address
- v1.Nft
- v1.Rate
- v2.Auth
- v2.Wallet
- v2.NftContract
- v2.JettonContract
NFTs
POST
/v1.Address/Nfts
v1.Address
Request
Body Params application/json
address
string
address
>= 8 characters<= 256 characters
Default:
foundation.ton
limit
integer
limit
<= 100
Default:
10
offset
integer
offset
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/v1.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
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.index
string
index
collection_address
string
collection_address
Example
{
"result": [
{
"address": "UQDr5nMy8PFl1laCAc_vzecloxC4sVG5qjk9j6EsjDMFAVmh",
"content": {
"uri": "https://s.getgems.io/nft/c/6286e4149e7aeee439741a29/118.json"
},
"index": "118",
"collection_address": "UQBDLUE8wS7K82cS_hCz8fnVVU4VgiQOqa5b1TFDDCIwKjkv"
}
]
}
🔴500Server Error