Interface TensorCollectionStats

Tensor Collection Statistics Response

interface TensorCollectionStats {
    avgPrice24h?: number;
    creators?: string[];
    floorChange24h?: number;
    floorPrice: number;
    marketCap: number;
    name: string;
    numListed: number;
    royaltyBps?: number;
    sales24h: number;
    slug: string;
    totalSupply: number;
    volume24h: number;
    volume30d: number;
    volume7d: number;
    volumeAll: number;
}

Properties

avgPrice24h?: number

Average price in lamports

creators?: string[]

Verified creator addresses

floorChange24h?: number

24h floor price change percentage

floorPrice: number

Current floor price in lamports

marketCap: number

Market cap in lamports (floor * supply)

name: string

Collection name

numListed: number

Listed count

royaltyBps?: number

Royalty percentage (basis points)

sales24h: number

24h sales count

slug: string

Collection slug/identifier

totalSupply: number

Total supply

volume24h: number

24h volume in lamports

volume30d: number

30d volume in lamports

volume7d: number

7d volume in lamports

volumeAll: number

All-time volume in lamports