Get NFT Transactions
Get an NFT's transaction history.
This method will use 20 Compute Units.
Returns a list of transactions for a given non-fungible token
Path parameters
tokenIdstring | nullableRequiredExample:
Network entity ID in the format of shard.realm.num
0.1.2Pattern: ^\d{1,10}\.\d{1,10}\.\d{1,10}$serialNumberinteger · int64 · min: 1 · max: 9223372036854776000RequiredDefault:
The nft serial number
1Example: 1Query parameters
limitinteger · int32 · min: 1 · max: 100OptionalDefault:
The maximum number of items to return
25Example: 2orderundefined · enumOptionalDefault:
The order in which items are listed
descExample: ascPossible values: timestampstring[]OptionalExample:
The consensus timestamp in seconds.nanoseconds format with an optional comparison operator
{"summary":"--","value":""}Responses
200
OK
application/json
206
Partial Content
application/json
400
Invalid parameter
application/json
get
/api/v1/tokens/{tokenId}/nfts/{serialNumber}/transactionsGET /v1/YOUR_API_KEY/api/v1/tokens/{tokenId}/nfts/{serialNumber}/transactions HTTP/1.1
Host: mainnet.hedera.validationcloud.io
Accept: */*
{
"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"
}
}Last updated
Was this helpful?