GET
/
v1
/
open
/
streamings
curl --request GET \
  --url https://app.thefaithapp.com/api/v1/open/streamings \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "video_streaming": {
    "id": 1,
    "live_title": "REVERE 24/7 Worship Live Stream",
    "source": "1",
    "live_stream_url": "https://www.youtube.com/embed/M94RrCFqaw4?si=Ma17eZPBxSWfzZQi",
    "live_status": 0,
    "client_id": 2,
    "deleted_at": null,
    "created_at": "2025-05-02T21:50:44.000000Z",
    "updated_at": "2025-05-02T21:50:44.000000Z"
  },
  "audio_streaming": {
    "id": 1,
    "title": "teste",
    "stream_url": "https://stream.zeno.fm/h3d42qflyiquv",
    "type": "0",
    "status": "0",
    "thumbnail": "https://i0.wp.com/www.robertrickman.net/wp-content/uploads/2015/05/stock-footage-audio-spectrum-loop.jpg",
    "client_id": 2,
    "deleted_at": null,
    "created_at": "2025-05-02T21:50:13.000000Z",
    "updated_at": "2025-05-02T21:50:13.000000Z"
  }
}

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Key
string
required

Your client API key from the dashboard (Settings page).

Response

200
application/json
Current live video and audio streaming information.

The response is of type object.