# games.gamesgamesgamesgames.getPopularGames

> 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.getPopularGames)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4jrld6fwpnwqehtce56qshzv/games.gamesgamesgamesgames.getPopularGames/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4jrld6fwpnwqehtce56qshzv/games.gamesgamesgamesgames.getPopularGames/examples)

## Definitions

### `games.gamesgamesgamesgames.getPopularGames`

**Type**: `query`

Get popular games ranked by concurrent player count from SteamSpy data.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `games` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.getPopularGames",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "games"
          ],
          "properties": {
            "games": {
              "type": "array",
              "items": {
                "ref": "games.gamesgamesgamesgames.defs#gameSummaryView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 20,
            "maximum": 100,
            "minimum": 1
          }
        }
      },
      "description": "Get popular games ranked by concurrent player count from SteamSpy data."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
