Request parameters for searchNFTs operation in MetadataSearchApi.

SearchNFTsRequest

interface SearchNFTsRequestParams {
    chainName: string;
    contractAddress: string[];
    accountAddress?: string;
    stackId?: string[];
    onlyIncludeOwnerListings?: boolean;
    pageSize?: number;
    pageCursor?: string;
}

Properties

chainName: string

The name of chain

SearchNFTs

contractAddress: string[]

List of contract addresses to filter by

SearchNFTs

accountAddress?: string

Account address to filter by

SearchNFTs

stackId?: string[]

Filters NFTs that belong to any of these stacks

SearchNFTs

onlyIncludeOwnerListings?: boolean

Whether the listings should include only the owner created listings

SearchNFTs

pageSize?: number

Number of results to return per page

SearchNFTs

pageCursor?: string

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

SearchNFTs