> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thefaithapp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Live Streamings

Retrieves the current live video and audio streaming information for the authenticated user's church.

* Requires both an API key and a TheFaithApp member bearer token.

## Request inputs

<ParamField header="X-API-Key" type="string" required>
  Your client API key from the dashboard (Settings page).
</ParamField>

## Response fields

<ResponseField name="video_streaming" type="object">
  The church's current live or scheduled video streaming configuration, when one exists.
</ResponseField>

<ResponseField name="audio_streaming" type="object">
  The church's current live or scheduled audio streaming configuration, when one exists.
</ResponseField>

<ResponseField name="video_streaming.live_stream_url" type="string">
  The direct video stream URL the client should open for live playback.
</ResponseField>

<ResponseField name="audio_streaming.stream_url" type="string">
  The direct audio stream URL the client should open for live playback.
</ResponseField>

## Example response

```json theme={null}
{
  "video_streaming": {
    "id": 10,
    "live_title": "Live Sunday Service",
    "source": 2,
    "thumbnail": "https://cdn.example.com/streaming/live-service.jpg",
    "live_stream_url": "https://stream.example.com/live-service.m3u8",
    "live_status": 0,
    "client_id": 12
  },
  "audio_streaming": {
    "id": 6,
    "title": "Audio Stream",
    "stream_url": "https://stream.example.com/audio-service",
    "type": 0,
    "status": 0,
    "thumbnail": "https://cdn.example.com/streaming/audio-service.jpg",
    "client_id": 12
  }
}
```
