Transfers
Get transfers of NFT items by specified filters
Authorizations
Query parameters
owner_addressstring[]Optional
Address of NFT owner in any form. Max 1000
item_addressstring[]Optional
Address of NFT item in any form. Max: 1000.
collection_addressstringOptional
Collection address in any form.
directionstring · enumOptionalPossible values:
Direction of transfer.
start_utimeintegerOptional
Query transactions with generation UTC timestamp after given timestamp.
end_utimeintegerOptional
Query transactions with generation UTC timestamp before given timestamp.
start_ltintegerOptional
Query transactions with lt >= start_lt
.
end_ltintegerOptional
Query transactions with lt <= end_lt
.
limitinteger · min: 1 · max: 1000Optional
Limit number of queried rows. Use with offset to batch read.
offsetintegerOptional
Skip first N rows. Use with limit to batch read.
sortstring · enumOptionalPossible values:
Sort transactions by lt.
Responses
200
OK
application/json
400
Bad Request
application/json
get
GET /api/v3/nft/transfers HTTP/1.1
Host: ton-index.nownodes.io
X-Api-Key: YOUR_API_KEY
Accept: */*
{
"address_book": {
"ANY_ADDITIONAL_PROPERTY": {
"domain": "text",
"user_friendly": "text"
}
},
"metadata": {
"ANY_ADDITIONAL_PROPERTY": {
"is_indexed": true,
"token_info": [
{
"description": "text",
"extra": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"image": "text",
"name": "text",
"symbol": "text",
"type": "text"
}
]
}
},
"nft_transfers": [
{
"custom_payload": "text",
"forward_amount": "text",
"forward_payload": "text",
"new_owner": "text",
"nft_address": "text",
"nft_collection": "text",
"old_owner": "text",
"query_id": "text",
"response_destination": "text",
"trace_id": "text",
"transaction_aborted": true,
"transaction_hash": "text",
"transaction_lt": "0",
"transaction_now": 1
}
]
}