# place.stream.branding.getBlob

> Published by [did:web:longos.iameli.link](https://lexicon.garden/identity/did:web:longos.iameli.link)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.branding.getBlob)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.branding.getBlob/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.branding.getBlob/examples)

## Definitions

### `place.stream.branding.getBlob`

**Type**: `query`

Get a specific branding asset blob by key.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `key` | `string` | Yes | Branding asset key (mainLogo, favicon, siteTitle, etc.) |
| `broadcaster` | `string` (did) | No | DID of the broadcaster. If not provided, uses the server's default broadcaster. |

#### Output

**Encoding**: `*/*`

#### Errors

- **BrandingNotFound**: The requested branding asset does not exist

## Raw Schema

```json
{
  "id": "place.stream.branding.getBlob",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "BrandingNotFound",
          "description": "The requested branding asset does not exist"
        }
      ],
      "output": {
        "schema": null,
        "encoding": "*/*",
        "description": "Raw blob data with appropriate content-type"
      },
      "parameters": {
        "type": "params",
        "required": [
          "key"
        ],
        "properties": {
          "key": {
            "type": "string",
            "description": "Branding asset key (mainLogo, favicon, siteTitle, etc.)"
          },
          "broadcaster": {
            "type": "string",
            "format": "did",
            "description": "DID of the broadcaster. If not provided, uses the server's default broadcaster."
          }
        }
      },
      "description": "Get a specific branding asset blob by key."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
