# space.highport.sites.getTileIcon

> Published by [lexicons.highport.space](https://lexicon.garden/identity/did:plc:ciygg5hma4q7ah2kxaszkyob)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.sites.getTileIcon)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.sites.getTileIcon/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.sites.getTileIcon/examples)

## Definitions

### `space.highport.sites.getTileIcon`

**Type**: `query`

A tile's icon bytes, served with the blob's mimeType and a one-year immutable Cache-Control. Lets directories show icons even after the author's PDS has dropped the blob.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes | The icon blob's CID. |

#### Output

**Encoding**: `*/*`

#### Errors

- **TileNotFound**: No published tile uses that icon CID.

## Raw Schema

```json
{
  "id": "space.highport.sites.getTileIcon",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "TileNotFound",
          "description": "No published tile uses that icon CID."
        }
      ],
      "output": {
        "encoding": "*/*"
      },
      "parameters": {
        "type": "params",
        "required": [
          "cid"
        ],
        "properties": {
          "cid": {
            "type": "string",
            "format": "cid",
            "description": "The icon blob's CID."
          }
        }
      },
      "description": "A tile's icon bytes, served with the blob's mimeType and a one-year immutable Cache-Control. Lets directories show icons even after the author's PDS has dropped the blob."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
