Skip to main content
GET
/
api
/
v1
/
tokens
/
{tokenId}
/
nfts
/
{serialNumber}
/
transactions
Get an nfts transction history
curl --request GET \
  --url https://mainnet.mirrornode.hedera.com/api/v1/tokens/{tokenId}/nfts/{serialNumber}/transactions
{
  "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": null
  }
}

Path Parameters

tokenId
string | null
required

Token id

Example:

"0.0.2"

serialNumber
integer
default:1
required

The nft serial number

Required range: 1 <= x <= 9223372036854776000

Query Parameters

limit
integer
default:25

The maximum number of items to return

Required range: 1 <= x <= 100
order
enum<string>
default:desc

The order in which items are listed

Available options:
asc,
desc
timestamp
string[]

The consensus timestamp as a Unix timestamp in seconds.nanoseconds format with an optional comparison operator. See unixtimestamp.com for a simple way to convert a date to the 'seconds' part of the Unix time.

Response

OK

transactions
object[]
required