# games.gamesgamesgamesgames.feed.getListItems

> Published by [gamesgamesgamesgames.games](https://lexicon.garden/identity/did:web:gamesgamesgamesgames.games)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.feed.getListItems)
- [Documentation](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.feed.getListItems/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.feed.getListItems/examples)

## Definitions

### `games.gamesgamesgamesgames.feed.getListItems`

**Type**: `query`

Get paginated game items from a list.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `listUri` | `string` (at-uri) | Yes | The AT-URI of the list. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `items` | `array` | Yes |  |
| `cursor` | `string` | No |  |

### `games.gamesgamesgamesgames.feed.getListItems#listItemView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes |  |
| `game` | `unknown` | Yes |  |
| `addedAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.feed.getListItems",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "items"
          ],
          "properties": {
            "items": {
              "type": "array",
              "items": {
                "ref": "#listItemView",
                "type": "ref"
              }
            },
            "cursor": {
              "type": "string"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "listUri"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 30,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          },
          "listUri": {
            "type": "string",
            "format": "at-uri",
            "description": "The AT-URI of the list."
          }
        }
      },
      "description": "Get paginated game items from a list."
    },
    "listItemView": {
      "type": "object",
      "required": [
        "uri",
        "addedAt",
        "game"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "game": {
          "type": "unknown"
        },
        "addedAt": {
          "type": "string",
          "format": "datetime"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
