# place.stream.broadcast.getBroadcaster

> 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.broadcast.getBroadcaster)
- [Documentation](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.broadcast.getBroadcaster/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:longos.iameli.link/place.stream.broadcast.getBroadcaster/examples)

## Definitions

### `place.stream.broadcast.getBroadcaster`

**Type**: `query`

Get information about a Streamplace broadcaster.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `admins` | `array` | No | Array of DIDs authorized as admins |
| `server` | `string` (did) | No | DID of this particular Streamplace server |
| `broadcaster` | `string` (did) | Yes | DID of the Streamplace broadcaster to which this server belongs |

## Raw Schema

```json
{
  "id": "place.stream.broadcast.getBroadcaster",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "broadcaster"
          ],
          "properties": {
            "admins": {
              "type": "array",
              "items": {
                "type": "string",
                "format": "did"
              },
              "description": "Array of DIDs authorized as admins"
            },
            "server": {
              "type": "string",
              "format": "did",
              "description": "DID of this particular Streamplace server"
            },
            "broadcaster": {
              "type": "string",
              "format": "did",
              "description": "DID of the Streamplace broadcaster to which this server belongs"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {}
      },
      "description": "Get information about a Streamplace broadcaster."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
