Get NFT transfers from a block to a block
Get NFT transfers from a block to a block
Query Parameters
The minimum block number from which to get the transfers
The maximum block number from which to get the transfers
The cursor returned in the previous response (used for getting the next page).
Number of items returned, default: 20
- 200
Successful
Schema
- Array [
- ]
The cursor returned in the previous response (used for getting the next page)
Page of results
Limit of results
Total returned result items
data object[] required
Array of documents
The address of the NFT contract
The type of NFT contract standard
The token ID of the NFT
The block hash of the transaction
The block number when the amount or owner changed
The transaction hash
The log index
The address that sent the NFT
The address that received the NFT
The number of tokens transferred
The operator present only for ERC1155 transfers
Block timestamp
Block time
{
"cursor": "string",
"page": 0,
"limit": 0,
"total_items": 0,
"data": [
{
"token_address": "string",
"contract_type": "string",
"token_id": "string",
"block_hash": "string",
"block_number": 0,
"transaction_hash": "string",
"log_index": 0,
"from": "string",
"to": "string",
"amount": "string",
"operator": "string",
"timestamp": 1661314004,
"block_time": "2020-05-06 09:06:26.0"
}
]
}