curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/nft/transfers
{
"transfers": [
{
"nft": {
"address": "<string>",
"collection": {
"address": "<string>"
}
},
"from": {
"address": "<string>"
},
"to": {
"address": "<string>"
},
"transaction": {
"hash": "<string>",
"time": 123
},
"value": "<string>"
}
]
}
Retrieves a list of NFT transfers from the TON blockchain
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/nft/transfers
{
"transfers": [
{
"nft": {
"address": "<string>",
"collection": {
"address": "<string>"
}
},
"from": {
"address": "<string>"
},
"to": {
"address": "<string>"
},
"transaction": {
"hash": "<string>",
"time": 123
},
"value": "<string>"
}
]
}
nft/transfers
endpoint retrieves a list of NFT (Non-Fungible Token) transfers from the TON blockchain. This endpoint allows you to fetch information about NFT transfer activities and provides options for filtering, pagination, and sorting.
direction
(string, required) — The direction of transfers to retrieve. Possible values: in
, out
, or both
. Default: both
.limit
(integer, optional) — The maximum number of transfers to return. Default: 128
.offset
(integer, optional) — The number of transfers to skip before starting to return results. Default: 0
.sort
(string, optional) — The sorting order of the transfers. Possible values: asc
(ascending) or desc
(descending). Default: desc
.transfers
(array) — An array of NFT transfer objects, each containing:
nft
(object) — Information about the transferred NFT:
address
(string) — The address of the NFT item.collection
(object) — Information about the collection:
address
(string) — The address of the collection.from
(object) — Information about the sender:
address
(string) — The address of the sender.to
(object) — Information about the recipient:
address
(string) — The address of the recipient.transaction
(object) — Information about the transaction:
hash
(string) — The hash of the transaction.time
(integer) — The timestamp of the transaction.value
(string) — The value of the transfer (if any).nft/transfers
endpoint is useful for various applications that need to track or analyze NFT transfer activities on the TON blockchain:
The direction of transfers to retrieve
in
, out
, both
The maximum number of transfers to return
The number of transfers to skip before starting to return results
The sorting order of the transfers
asc
, desc
Successful response
The response is of type object
.
Was this page helpful?