GET
/
v1
/
open
/
videos
curl --request GET \
  --url https://app.thefaithapp.com/api/v1/open/videos \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "current_page": 1,
  "data": [
    {
      "id": 2,
      "client_id": 2,
      "category_id": 2,
      "title": "A Man Works For His Wife's Father While She Spends Time With Other Guys",
      "description": "Today we're reviewing the comedy-drama film from 2007. Get ready for incredible plot twists!\nA man marries a rich woman and works for her father. At the same time, his wife has a habit of inviting strangers to visit to get to know them better, which her husband does not know about.",
      "source": "AyWgmsUxXR8",
      "duration": "22:01",
      "media_type": "4",
      "deleted_at": null,
      "created_at": "2025-02-08T12:58:14.000000Z",
      "updated_at": "2025-02-08T12:58:14.000000Z",
      "cover_photo": "https://d2c58p2vdu8kb2.cloudfront.net/cover_photo/BbC3mhHtM7n1znGLGxnqWh4LzQIWCrFo2uyWKW2u.jpg"
    }
  ],
  "first_page_url": "https://app.thefaithapp.com/api/v1/open/videos?page=1",
  "from": 1,
  "last_page": 1,
  "last_page_url": "https://app.thefaithapp.com/api/v1/open/videos?page=1",
  "links": [
    {
      "url": null,
      "label": "&laquo; Previous",
      "active": false
    },
    {
      "url": "https://app.thefaithapp.com/api/v1/open/videos?page=1",
      "label": "1",
      "active": true
    },
    {
      "url": null,
      "label": "Next &raquo;",
      "active": false
    }
  ],
  "next_page_url": null,
  "path": "https://app.thefaithapp.com/api/v1/open/videos",
  "per_page": 30,
  "prev_page_url": null,
  "to": 2,
  "total": 2
}

Retrieves a paginated list of video sermons for the authenticated user’s church.

  • Requires both an API key and a Firebase ID token.
  • Supports optional search and pagination.

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).

Query Parameters

Search term to filter video sermons.

page
integer
default:1

Page number for pagination (default: 1).

Response

200
application/json
Paginated list of video sermons.

The response is of type object.