Get Nft Transfers
GET/api/v1/accounts/:accountAddress/nft-transfers
Free [3 Credits]
List of non-fungible token transfers related to the account.
Request
Path Parameters
accountAddress stringrequired
account address
Query Parameters
contractAddress string
contract address
blockNumberStart int64
start-number of block-range
blockNumberEnd int64
end-number of block-range
page int32
Possible values: >= 1
Results page you want to retrieve (1..N)
Example: 1
size int32
Number of records per page, min: 1, Max: 2000
Example: 20
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
]
results
object[]
required
contract
object
required
contract_address Contract Address (string)required
contract_type Contract Type (string)
Possible values: [ERC20
, KIP7
, KIP17
, KIP37
, ERC721
, ERC1155
, CONSENSUS_NODE
, CUSTOM
, UNKNOWN
, UNKNOWN_
]
block_id int64required
transaction_hash Transaction Hash (string)required
fee_payer Fee Payer (string)
transaction_index int32
datetime date-timerequired
from Address (from) (string)required
to Address (to) (string)
token_id NFT Token ID (string)required
token_count NFT Token Count (integer)required
paging
object
required
total_count int64required
current_page int32required
last booleanrequired
total_page int32required
property
object
property name* object
{
"results": [
{
"contract": {
"contract_address": "string",
"contract_type": "ERC20"
},
"block_id": 0,
"transaction_hash": "string",
"fee_payer": "string",
"transaction_index": 0,
"datetime": "2025-04-16T01:16:41.370Z",
"from": "string",
"to": "string",
"token_id": "string",
"token_count": 0
}
],
"paging": {
"total_count": 0,
"current_page": 0,
"last": true,
"total_page": 0
},
"property": {}
}
Loading...