OpenSea · Schema

TokenGroupRollingStatsResponse

Rolling statistics for a token group over multiple time periods

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
volume_1d string 1-day trading volume in USD
volume_7d string 7-day trading volume in USD
volume_30d string 30-day trading volume in USD
price_change_1d number 1-day price change percentage
price_change_7d number 7-day price change percentage
price_change_30d number 30-day price change percentage
View JSON Schema on GitHub

JSON Schema

TokenGroupRollingStatsResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/TokenGroupRollingStatsResponse",
  "title": "TokenGroupRollingStatsResponse",
  "type": "object",
  "description": "Rolling statistics for a token group over multiple time periods",
  "properties": {
    "volume_1d": {
      "type": "string",
      "description": "1-day trading volume in USD"
    },
    "volume_7d": {
      "type": "string",
      "description": "7-day trading volume in USD"
    },
    "volume_30d": {
      "type": "string",
      "description": "30-day trading volume in USD"
    },
    "price_change_1d": {
      "type": "number",
      "format": "double",
      "description": "1-day price change percentage"
    },
    "price_change_7d": {
      "type": "number",
      "format": "double",
      "description": "7-day price change percentage"
    },
    "price_change_30d": {
      "type": "number",
      "format": "double",
      "description": "30-day price change percentage"
    }
  }
}