Interface ListCollectionsRequestParams

Request parameters for listCollections operation in CollectionsApi.

ListCollectionsRequest

interface ListCollectionsRequestParams {
    chainName: string;
    contractAddress?: string[];
    verificationStatus?: AssetVerificationStatus[];
    fromUpdatedAt?: string;
    pageCursor?: string;
    pageSize?: number;
}

Properties

chainName: string

The name of chain

ListCollections

contractAddress?: string[]

List of contract addresses to filter by

ListCollections

verificationStatus?: AssetVerificationStatus[]

List of verification status to filter by

ListCollections

fromUpdatedAt?: string

Datetime to use as the oldest updated timestamp

ListCollections

pageCursor?: string

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

ListCollections

pageSize?: number

Maximum number of items to return

ListCollections