Interface NFTsByIssuerRequest

The nfts_by_issuer method returns a list of NFTokens issued by the account. The order of the NFTs is not associated with the date the NFTs were minted. Expects a response in the form of a NFTsByIssuerResponse.

interface NFTsByIssuerRequest {
    api_version?: number;
    command: "nfts_by_issuer";
    id?: string | number;
    issuer: string;
    ledger_hash?: string;
    ledger_index?: LedgerIndex;
    limit?: number;
    marker?: unknown;
    nft_taxon?: number;
    [x: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [x: string]: unknown

Properties

api_version?: number

The API version to use. If omitted, use version 1.

command: "nfts_by_issuer"

The name of the API method.

id?: string | number

A unique value to identify this request. The response to this request uses the same id field. This way, even if responses arrive out of order, you know which request prompted which response.

issuer: string

A unique identifier for the account, most commonly the account's address

ledger_hash?: string

A 20-byte hex string for the ledger version to use.

ledger_index?: LedgerIndex

The ledger index of the ledger to use, or a shortcut string.

limit?: number

Default varies. Limit the number of transactions to retrieve. The server is not required to honor this value.

marker?: unknown

Value from a previous paginated response. Resume retrieving data where that response left off. This value is stable even if there is a change in the server's range of available ledgers.

nft_taxon?: number

Filter NFTs issued by this issuer that have this taxon.