NFT Methods
List NFTs by issuer (Clio only)
wss://honeycluster.io
rpc method: nfts_by_issuer

Returns all NFTokens created by a given issuer account. Only available on Clio servers.

Try it now
Response · nfts_by_issuer WS Response
{
  "result": {
    "issuer": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
    "nfts": [
      {
        "nft_id": "00080000B4F4AFC5984A241ACF7DBAF0FA866A7B95C0A4E8166DC5230000001B",
        "ledger_index": 89012340,
        "owner": "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn",
        "is_burned": false,
        "flags": 8,
        "uri": "68747470733A2F2F6578616D706C652E636F6D2F6E6674"
      }
    ],
    "ledger_index": 89012345
  },
  "status": "success",
  "type": "response",
  "id": 1
}
Request Message
nfts_by_issuer WS Request
application/json
List NFTs by issuer (Clio only)
FieldTypeDescription
command
required
string
WebSocket command name
id
object
Client-supplied identifier to correlate requests with responses.
issuer
string
The account address of the NFT issuer.
nft_taxon
integer
Filter by taxon value assigned during minting.
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.
limit
integer
Maximum number of results to return. Clio servers may return more than this.
marker
object
Opaque pagination marker from a previous response. Pass unchanged to fetch the next page.
api_version
object
API version for the response format. Version 2 is the default for rippled 2.0+.
Example
Json
{
  "command": "nfts_by_issuer",
  "id": 1,
  "issuer": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
  "nft_taxon": 0,
  "limit": 20
}
Response Message
nfts_by_issuer WS Response
application/json
WebSocket response for nfts_by_issuer
FieldTypeDescription
result
object
status
enum<string>
Available
successerror
type
string
id
stringnumber
Echo of the client-provided correlation ID
Example
Json
{
  "result": {
    "issuer": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
    "nfts": [
      {
        "nft_id": "00080000B4F4AFC5984A241ACF7DBAF0FA866A7B95C0A4E8166DC5230000001B",
        "ledger_index": 89012340,
        "owner": "rG1QQv2nh2gr7RCZ1P8YYcBUKCCN633jCn",
        "is_burned": false,
        "flags": 8,
        "uri": "68747470733A2F2F6578616D706C652E636F6D2F6E6674"
      }
    ],
    "ledger_index": 89012345
  },
  "status": "success",
  "type": "response",
  "id": 1
}