Mojang · Schema

SaleStatistics

Aggregate sale figures.

Games And ComicsMinecraftGamingIdentityPlayer ProfilesSessionPublic APIs

Properties

Name Type Description
total integer Total units sold across the requested SKUs.
last24h integer Units sold in the last 24 hours.
saleVelocityPerSeconds number Recent average sales per second.
View JSON Schema on GitHub

JSON Schema

public-api-sale-statistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mojang/refs/heads/main/json-schema/public-api-sale-statistics-schema.json",
  "title": "SaleStatistics",
  "description": "Aggregate sale figures.",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total units sold across the requested SKUs.",
      "example": 41000000
    },
    "last24h": {
      "type": "integer",
      "description": "Units sold in the last 24 hours.",
      "example": 75000
    },
    "saleVelocityPerSeconds": {
      "type": "number",
      "format": "float",
      "description": "Recent average sales per second.",
      "example": 0.85
    }
  }
}