Get NFT transfers
Get list NFT transfers by query
Query Parameters
cursor string
The cursor returned in the previous response (used for getting the next page).
limit number
Number of items returned, default: 20
Responses
- 200
Successful
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
cursor string
The cursor returned in the previous response (used for getting the next page)
page number required
Page of results
limit number required
Limit of results
total_items number required
Total returned result items
data object[] required
Array of documents
token_address string required
The address of the NFT contract
contract_type string required
The type of NFT contract standard
token_id string required
The token ID of the NFT
block_hash string required
The block hash of the transaction
block_number number required
The block number when the amount or owner changed
transaction_hash string required
The transaction hash
log_index number required
The log index
from string required
The address that sent the NFT
to string required
The address that received the NFT
amount string required
The number of tokens transferred
operator string required
The operator present only for ERC1155 transfers
timestamp number required
Block timestamp
block_time number required
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"
}
]
}
Loading...