Request parameters for quotesForNFTs operation in PricingApi.

QuotesForNFTsRequest

interface QuotesForNFTsRequestParams {
    chainName: string;
    contractAddress: string;
    tokenId: string[];
    pageCursor?: string;
}

Properties

chainName: string

The name of chain

QuotesForNFTs

contractAddress: string

Contract address for collection that these token ids are on

QuotesForNFTs

tokenId: string[]

List of token ids to get pricing data for

QuotesForNFTs

pageCursor?: string

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

QuotesForNFTs