place.stream.branding.getBranding

did:web:stream.place

Documentation

Get all branding configuration for the broadcaster.

main query

Get all branding configuration for the broadcaster.

Parameters

broadcaster string did Optional

DID of the broadcaster. If not provided, uses the server's default broadcaster.

Output

Encodingapplication/json
assets array Required

List of available branding assets

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
DID of the broadcaster. If not provided, uses the server's default broadcaster.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "assets"
      ],
      "properties": {
        "assets": {
          "type": "array",
          "items": {
            "ref": "#brandingAsset",
            "type": "ref"
          },
          "description": "List of available branding assets"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "broadcaster": {
        "type": "string",
        "format": "did",
        "description": "DID of the broadcaster. If not provided, uses the server's default broadcaster."
      }
    }
  },
  "description": "Get all branding configuration for the broadcaster."
}
brandingAsset object

No description available.

Properties

data string Optional

Inline data for text assets

height integer Optional

Image height in pixels (optional, for images only)

key string Required

Asset key identifier

mimeType string Required

MIME type of the asset

url string Optional

URL to fetch the asset blob (for images)

width integer Optional

Image width in pixels (optional, for images only)

View raw schema
{
  "type": "object",
  "required": [
    "key",
    "mimeType"
  ],
  "properties": {
    "key": {
      "type": "string",
      "description": "Asset key identifier"
    },
    "url": {
      "type": "string",
      "description": "URL to fetch the asset blob (for images)"
    },
    "data": {
      "type": "string",
      "description": "Inline data for text assets"
    },
    "width": {
      "type": "integer",
      "description": "Image width in pixels (optional, for images only)"
    },
    "height": {
      "type": "integer",
      "description": "Image height in pixels (optional, for images only)"
    },
    "mimeType": {
      "type": "string",
      "description": "MIME type of the asset"
    }
  }
}

Lexicon Garden

@