Tensor · Schema

Tensor Listing

An active NFT listing on the Tensor marketplace.

NFTMarketplaceSolanaBlockchainWeb3CryptocurrencyTradingDAODeFiAMM

Properties

Name Type Description
mint string Solana NFT mint address.
owner string Wallet address that owns the listing.
price string Listing price in lamports.
source string
txAt string
blockNumber integer
royaltyBps integer
rarityRankTT integer Tensor Trade rarity rank.
collectionSlug string
nftStandard string
View JSON Schema on GitHub

JSON Schema

tensor-listing-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tensor/main/json-schema/tensor-listing-schema.json",
  "title": "Tensor Listing",
  "description": "An active NFT listing on the Tensor marketplace.",
  "type": "object",
  "required": ["mint", "owner", "price", "source"],
  "properties": {
    "mint": { "type": "string", "description": "Solana NFT mint address." },
    "owner": { "type": "string", "description": "Wallet address that owns the listing." },
    "price": { "type": "string", "description": "Listing price in lamports." },
    "source": { "type": "string", "enum": ["TENSORSWAP", "TCOMP", "MAGICEDEN_V2", "HYPERSPACE", "SOLANART"] },
    "txAt": { "type": "string", "format": "date-time" },
    "blockNumber": { "type": "integer" },
    "royaltyBps": { "type": "integer" },
    "rarityRankTT": { "type": "integer", "description": "Tensor Trade rarity rank." },
    "collectionSlug": { "type": "string" },
    "nftStandard": { "type": "string", "enum": ["NFT", "pNFT", "cNFT"] }
  }
}