# games.gamesgamesgamesgames.feed.getList

> 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.getList)
- [Documentation](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.feed.getList/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:gamesgamesgamesgames.games/games.gamesgamesgamesgames.feed.getList/examples)

## Definitions

### `games.gamesgamesgamesgames.feed.getList`

**Type**: `query`

Get a single list by its AT-URI, including creator profile info.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | The AT-URI of the list record. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `list` | `ref` → `#listDetailView` | Yes |  |

### `games.gamesgamesgamesgames.feed.getList#creatorView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | Yes |  |
| `avatar` | `unknown` | No |  |
| `handle` | `string` | Yes |  |
| `displayName` | `string` | No |  |

### `games.gamesgamesgamesgames.feed.getList#listDetailView`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes |  |
| `name` | `string` | Yes |  |
| `creator` | `ref` → `#creatorView` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `itemCount` | `integer` | Yes |  |
| `description` | `string` | No |  |

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.feed.getList",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "list"
          ],
          "properties": {
            "list": {
              "ref": "#listDetailView",
              "type": "ref"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "uri"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "at-uri",
            "description": "The AT-URI of the list record."
          }
        }
      },
      "description": "Get a single list by its AT-URI, including creator profile info."
    },
    "creatorView": {
      "type": "object",
      "required": [
        "did",
        "handle"
      ],
      "properties": {
        "did": {
          "type": "string",
          "format": "did"
        },
        "avatar": {
          "type": "unknown"
        },
        "handle": {
          "type": "string"
        },
        "displayName": {
          "type": "string"
        }
      }
    },
    "listDetailView": {
      "type": "object",
      "required": [
        "uri",
        "name",
        "itemCount",
        "createdAt",
        "creator"
      ],
      "properties": {
        "uri": {
          "type": "string",
          "format": "at-uri"
        },
        "name": {
          "type": "string"
        },
        "creator": {
          "ref": "#creatorView",
          "type": "ref"
        },
        "createdAt": {
          "type": "string",
          "format": "datetime"
        },
        "itemCount": {
          "type": "integer"
        },
        "description": {
          "type": "string"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
