Skip to main content
GET
/
v1
/
streamings
Get Live Streamings
curl --request GET \
  --url https://api.thefaithapp.com/v1/streamings \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "video_streaming": {},
  "audio_streaming": {},
  "video_streaming.live_stream_url": "<string>",
  "audio_streaming.stream_url": "<string>"
}

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.

Retrieves the current live video and audio streaming information for the authenticated user’s church.
  • Requires both an API key and a Firebase ID token.

Request inputs

X-API-Key
string
required
Your client API key from the dashboard (Settings page).

Response fields

video_streaming
object
The church’s current live or scheduled video streaming configuration, when one exists.
audio_streaming
object
The church’s current live or scheduled audio streaming configuration, when one exists.
video_streaming.live_stream_url
string
The direct video stream URL the client should open for live playback.
audio_streaming.stream_url
string
The direct audio stream URL the client should open for live playback.

Example response

{
  "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
  }
}