Skip to main content
GET
/
api
/
v1
/
tokens
/
{tokenId}
/
nfts
/
{serialNumber}
Get nft info
curl --request GET \
  --url https://mainnet.mirrornode.hedera.com/api/v1/tokens/{tokenId}/nfts/{serialNumber}
{
  "account_id": "0.1.2",
  "created_timestamp": "1234567890.000000001",
  "delegating_spender": "0.0.400",
  "deleted": false,
  "metadata": "VGhpcyBpcyBhIHRlc3QgTkZU",
  "modified_timestamp": "1610682445.003266001",
  "serial_number": 124,
  "spender_id": "0.0.500",
  "token_id": "0.0.222"
}

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

Response

OK

account_id
string | null

Network entity ID in the format of shard.realm.num

Example:

"0.0.2"

created_timestamp
string | null

A Unix timestamp in seconds.nanoseconds format

Example:

"1586567700.453054000"

delegating_spender
string | null

Network entity ID in the format of shard.realm.num

Example:

"0.0.2"

deleted
boolean

whether the nft or the token it belongs to has been deleted

metadata
string<byte>

Arbitrary binary data associated with this NFT encoded in base64.

modified_timestamp
string | null

A Unix timestamp in seconds.nanoseconds format

Example:

"1586567700.453054000"

serial_number
integer
Example:

1

spender
string | null

Network entity ID in the format of shard.realm.num

Example:

"0.0.2"

token_id
string | null

Network entity ID in the format of shard.realm.num

Example:

"0.0.2"