Skip to main content

nft_info RPC Method

Asks the Clio server for information about the NFT being queried

Updated on
Oct 4, 2023

nft_info RPC Method

Parameters

nft_id
string
REQUIRED
The ID of the non-fungible token
ledger_hash
string
A 20-byte hex string for the ledger version to use
ledger_index
string
The ledger index associated with the NFT

Returns

result
object
An object which contains the following fields:
nft_id
string
A unique identifier for the non-fungible token (NFT)
ledger_index
integer
The ledger index of the most recent ledger version where the state of this NFT was modified
owner
string
The account ID of this NFT's owner at this ledger index
is_burned
boolean
A boolean indicating whether the NFT has been burned (destroyed) or not
flags
integer
The flag set of this NFT
transfer_fee
integer
The fee required for transferring the NFT
issuer
string
The address of the NFT issuer
nft_taxon
integer
The taxon (classification) of the NFT
nft_sequence
integer
The sequence number of the NFT
uri
string
The Uniform Resource Identifier (URI) associated with the NFT
validated
boolean
It indicates whether the NFT information has been validated
status
string
The status of the request
warnings
array
An array of warning objects, each containing the following fields:
id
integer
The ID of the warning
message
string
The warning message
Request
1
curl https://docs-demo.xrp-mainnet.quiknode.pro/ \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{
5
"method": "nft_info",
6
"params": [{
7
"nft_id": "000B0000867AD7165A812436FBFA175555413C26162BCF3816E5DA9D00000001",
8
"ledger_index": "validated"
9
}],"id":1,"jsonrpc":"2.0"}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free