Interface ListNFTsByAccountAddressRequestParams

Request parameters for listNFTsByAccountAddress operation in NftsApi.

ListNFTsByAccountAddressRequest

interface ListNFTsByAccountAddressRequestParams {
    accountAddress: string;
    chainName: string;
    contractAddress?: string;
    tokenId?: string[];
    fromUpdatedAt?: 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

tokenId?: string[]

List of token IDs to filter by

ListNFTsByAccountAddress

fromUpdatedAt?: string

Datetime to use as the oldest updated timestamp

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