# place.stream.live.getLiveUsers

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

## Definitions

### `place.stream.live.getLiveUsers`

**Type**: `query`

Get a list of livestream segments for a user

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No |  |
| `before` | `string` (datetime) | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `streams` | `array` | No |  |

## Raw Schema

```json
{
  "id": "place.stream.live.getLiveUsers",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "properties": {
            "streams": {
              "type": "array",
              "items": {
                "ref": "place.stream.livestream#livestreamView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "before": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Get a list of livestream segments for a user"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
