# place.stream.game.search

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

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.game.search)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.game.search/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.game.search/examples)

## Definitions

### `place.stream.game.search`

**Type**: `query`

Search for games and other entities via the games.gamesgamesgamesgames catalog. Proxied from the configured games API.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `q` | `string` | Yes |  |
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No |  |
| `results` | `array` | Yes |  |
| `totalResults` | `integer` | No |  |

## Raw Schema

```json
{
  "id": "place.stream.game.search",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "results"
          ],
          "properties": {
            "cursor": {
              "type": "string"
            },
            "results": {
              "type": "array",
              "items": {
                "refs": [
                  "games.gamesgamesgamesgames.defs#gameSummaryView",
                  "games.gamesgamesgamesgames.defs#profileSummaryView",
                  "games.gamesgamesgamesgames.defs#platformSummaryView",
                  "games.gamesgamesgamesgames.defs#collectionSummaryView",
                  "games.gamesgamesgamesgames.defs#engineSummaryView"
                ],
                "type": "union"
              }
            },
            "totalResults": {
              "type": "integer"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "q"
        ],
        "properties": {
          "q": {
            "type": "string",
            "maxLength": 200,
            "minLength": 1
          },
          "limit": {
            "type": "integer",
            "default": 20,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          }
        }
      },
      "description": "Search for games and other entities via the games.gamesgamesgamesgames catalog. Proxied from the configured games API."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
