Get an NFT's transaction history.
This method will use 15 Compute Units.
15
Last updated 6 months ago
Returns a list of transactions for a given non-fungible token
Network entity ID in the format of shard.realm.num
shard.realm.num
"0.1.2"
^\d{1,10}\.\d{1,10}\.\d{1,10}$
The nft serial number
1
OK
const response = await fetch('https://mainnet.hedera.validationcloud.io/v1/YOUR_API_KEY/api/v1/tokens/{tokenId}/nfts/{serialNumber}/transactions', { method: 'GET', headers: {}, }); const data = await response.json();
{ "transactions": [ { "consensus_timestamp": "1618591023.997420021", "is_approval": false, "nonce": 0, "receiver_account_id": "0.0.11", "sender_account_id": "0.0.10", "transaction_id": "0.0.19789-1618591023-997420021", "type": "CRYPTOTRANSFER" } ], "links": { "next": "/api/v1/transactions?timestamp=lt:1657598275.517984411" } }