# lol.dids.sites.listTiles

> 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.sites.listTiles)
- [Documentation](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.sites.listTiles/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:cbkjy5n7bk3ax2wplmtjofq2/lol.dids.sites.listTiles/examples)

## Definitions

### `lol.dids.sites.listTiles`

**Type**: `query`

The directory of published tiles a site owner browses to find one to bind. Space tiles are never listed.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `did` | `string` (did) | No | List only the tiles of this author. |
| `limit` | `integer` | No | Maximum entries to return. |
| `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. |

## Raw Schema

```json
{
  "id": "lol.dids.sites.listTiles",
  "defs": {
    "main": {
      "type": "query",
      "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",
        "properties": {
          "did": {
            "type": "string",
            "format": "did",
            "description": "List only the tiles of this author."
          },
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum entries to return."
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor from a previous response."
          }
        }
      },
      "description": "The directory of published tiles a site owner browses to find one to bind. Space tiles are never listed."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
