Request parameters for listNFTs operation in NftsApi.

ListNFTsRequest

interface ListNFTsRequestParams {
    contractAddress: string;
    chainName: string;
    tokenId?: string[];
    fromUpdatedAt?: string;
    pageCursor?: string;
    pageSize?: number;
}

Properties

contractAddress: string

Contract address

ListNFTs

chainName: string

The name of chain

ListNFTs

tokenId?: string[]

List of token IDs to filter by

ListNFTs

fromUpdatedAt?: string

Datetime to use as the oldest updated timestamp

ListNFTs

pageCursor?: string

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

ListNFTs

pageSize?: number

Maximum number of items to return

ListNFTs