NFT Methods
Get NFT details (Clio only)
wss://honeycluster.io
rpc method: nft_info

Returns detailed information about a specific NFToken. Only available on Clio servers.

Try it now
Response · nft_info WS Response
{
  "result": {
    "nft_id": "00080000B4F4AFC5984A241ACF7DBAF0FA866A7B95C0A4E8166DC5230000001B",
    "ledger_index": 89012345,
    "owner": "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn",
    "is_burned": false,
    "flags": 8,
    "transfer_fee": 0,
    "issuer": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
    "nft_taxon": 0,
    "nft_serial": 27,
    "uri": "68747470733A2F2F6578616D706C652E636F6D2F6E6674"
  },
  "status": "success",
  "type": "response",
  "id": 1
}
Request Message
nft_info WS Request
application/json
Get NFT details (Clio only)
FieldTypeDescription
command
required
string
WebSocket command name
id
object
Client-supplied identifier to correlate requests with responses.
nft_id
string
The 256-bit hex NFTokenID to retrieve details for.
ledger_index
object
A ledger index (sequence number) or shortcut string identifying which ledger to use.
ledger_hash
string
256-bit hex hash identifying a specific ledger version.
api_version
object
API version for the response format. Version 2 is the default for rippled 2.0+.
Example
Json
{
  "command": "nft_info",
  "id": 1,
  "nft_id": "00080000B4F4AFC5984A241ACF7DBAF0FA866A7B95C0A4E8166DC5230000001B",
  "ledger_index": "validated"
}
Response Message
nft_info WS Response
application/json
WebSocket response for nft_info
FieldTypeDescription
result
object
status
enum<string>
Available
successerror
type
string
id
stringnumber
Echo of the client-provided correlation ID
Example
Json
{
  "result": {
    "nft_id": "00080000B4F4AFC5984A241ACF7DBAF0FA866A7B95C0A4E8166DC5230000001B",
    "ledger_index": 89012345,
    "owner": "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn",
    "is_burned": false,
    "flags": 8,
    "transfer_fee": 0,
    "issuer": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
    "nft_taxon": 0,
    "nft_serial": 27,
    "uri": "68747470733A2F2F6578616D706C652E636F6D2F6E6674"
  },
  "status": "success",
  "type": "response",
  "id": 1
}