Interface ListNFTsByAccountAddressRequestParams

Request parameters for listNFTsByAccountAddress operation in NftsApi.

ListNFTsByAccountAddressRequest

interface ListNFTsByAccountAddressRequestParams {
    accountAddress: string;
    chainName: string;
    contractAddress?: string;
    pageCursor?: string;
    pageSize?: number;
}

Properties

accountAddress: string

Account address

ListNFTsByAccountAddress

chainName: string

The name of chain

ListNFTsByAccountAddress

contractAddress?: string

The address of contract

ListNFTsByAccountAddress

pageCursor?: string

Encoded page cursor to retrieve previous or next page. Use the value returned in the response.

ListNFTsByAccountAddress

pageSize?: number

Maximum number of items to return

ListNFTsByAccountAddress