Listed NFT
Step 1: nftEntity query preparation
`isListed`: Boolean flag: true if the NFT is listed on a Marketplace, false otherwise - Boolean
`typeOfListing`: The type of listing: auction or sale - String
`marketplaceId`: The marketplace id where the NFT has been listed - String
`price`: The listing price in Big Number format - String
`priceRounded`: The listing price in a basic number format - Float
`timestampListed`: The listing timestamp. Date{
nftEntity(id: "${id}") {
nftId
owner
isListed
typeOfListing
marketplaceId
price
priceRounded
timestampListed
}
}Step 2: Sending the request to the Indexer
Support
Last updated