# lol.dids.manage.listSpaceTiles

> Published by [ngerakines.me](https://lexicon.garden/identity/did:plc:cbkjy5n7bk3ax2wplmtjofq2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.manage.listSpaceTiles)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.manage.listSpaceTiles/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.manage.listSpaceTiles/examples)

## Definitions

### `lol.dids.manage.listSpaceTiles`

**Type**: `query`

The tiles bard has indexed from a space's authority. The only directory of space tiles: they are never listed publicly. Authority and viewers.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Maximum entries to return. |
| `space` | `string` (at-uri) | Yes |  |
| `cursor` | `string` | No | Pagination cursor from a previous response. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `tiles` | `array` | Yes |  |
| `cursor` | `string` | No | Present when more entries exist. |

#### Errors

- **SpaceNotFound**: Bard is not connected to that space, or the caller is neither its authority nor a viewer.

## Raw Schema

```json
{
  "id": "lol.dids.manage.listSpaceTiles",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "SpaceNotFound",
          "description": "Bard is not connected to that space, or the caller is neither its authority nor a viewer."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "tiles"
          ],
          "properties": {
            "tiles": {
              "type": "array",
              "items": {
                "ref": "lol.dids.defs#tileView",
                "type": "ref"
              }
            },
            "cursor": {
              "type": "string",
              "description": "Present when more entries exist."
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "space"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum entries to return."
          },
          "space": {
            "type": "string",
            "format": "at-uri"
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor from a previous response."
          }
        }
      },
      "description": "The tiles bard has indexed from a space's authority. The only directory of space tiles: they are never listed publicly. Authority and viewers."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
