# games.gamesgamesgamesgames.getStats

> Published by [trezy.codes](https://lexicon.garden/identity/did:plc:4jrld6fwpnwqehtce56qshzv)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4jrld6fwpnwqehtce56qshzv/games.gamesgamesgamesgames.getStats)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4jrld6fwpnwqehtce56qshzv/games.gamesgamesgamesgames.getStats/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4jrld6fwpnwqehtce56qshzv/games.gamesgamesgamesgames.getStats/examples)

## Definitions

### `games.gamesgamesgamesgames.getStats`

**Type**: `query`

Get platform-wide statistics: total games, studios, and reviews.

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `totalGames` | `integer` | Yes |  |
| `totalReviews` | `integer` | Yes |  |
| `totalStudios` | `integer` | Yes |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.getStats",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "totalGames",
            "totalStudios",
            "totalReviews"
          ],
          "properties": {
            "totalGames": {
              "type": "integer"
            },
            "totalReviews": {
              "type": "integer"
            },
            "totalStudios": {
              "type": "integer"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Get platform-wide statistics: total games, studios, and reviews."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
