# games.gamesgamesgamesgames.feed.getSimilarGamesFeed

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

## Definitions

### `games.gamesgamesgamesgames.feed.getSimilarGamesFeed`

**Type**: `query`

Get games similar to a given game using vector similarity.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes |  |
| `limit` | `integer` | No |  |

#### Output

**Encoding**: `application/json`

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

## Raw Schema

```json
{
  "id": "games.gamesgamesgamesgames.feed.getSimilarGamesFeed",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "feed"
          ],
          "properties": {
            "feed": {
              "type": "array",
              "items": {
                "ref": "games.gamesgamesgamesgames.defs#gameFeedViewItem",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "uri"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "at-uri"
          },
          "limit": {
            "type": "integer",
            "default": 5,
            "maximum": 10,
            "minimum": 1
          }
        }
      },
      "description": "Get games similar to a given game using vector similarity."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
