OpenSea · Schema
TokenGroupStatsResponse
Market statistics for a token group
NFTMarketplaceWeb3BlockchainTradingDigital Assets
Properties
| Name | Type | Description |
|---|---|---|
| market_cap_usd | string | Total market capitalization in USD |
| volume_usd_24h | string | 24-hour trading volume in USD |
| price_usd | string | Current price in USD (from primary currency) |
| price_change_percent_24h | number | Price change percentage over the last 24 hours |
| total_supply | string | Total supply across all currencies in the group |
| holders | integer | Number of holders |
| rolling_stats | object | Rolling statistics over multiple time periods |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://opensea.io/schemas/TokenGroupStatsResponse",
"title": "TokenGroupStatsResponse",
"type": "object",
"description": "Market statistics for a token group",
"properties": {
"market_cap_usd": {
"type": "string",
"description": "Total market capitalization in USD"
},
"volume_usd_24h": {
"type": "string",
"description": "24-hour trading volume in USD"
},
"price_usd": {
"type": "string",
"description": "Current price in USD (from primary currency)"
},
"price_change_percent_24h": {
"type": "number",
"format": "double",
"description": "Price change percentage over the last 24 hours"
},
"total_supply": {
"type": "string",
"description": "Total supply across all currencies in the group"
},
"holders": {
"type": "integer",
"format": "int32",
"description": "Number of holders"
},
"rolling_stats": {
"$ref": "#/components/schemas/TokenGroupRollingStatsResponse",
"description": "Rolling statistics over multiple time periods"
}
},
"required": [
"market_cap_usd",
"volume_usd_24h"
]
}