> ## 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 Video Sermons

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

* Requires both an API key and a TheFaithApp member bearer token.
* Supports optional search and pagination.

## Request inputs

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

<ParamField query="search" type="string">
  Search term to filter video sermons.
</ParamField>

<ParamField query="page" type="number">
  Page number for pagination (default: 1).
</ParamField>

## Response fields

<ResponseField name="current_page" type="number">
  The current page of video sermon results.
</ResponseField>

<ResponseField name="data" type="object[]" required>
  Video media items available to the authenticated member's church.
</ResponseField>

<ResponseField name="data[].source" type="string">
  The playback URL or external platform link for the video item.
</ResponseField>

<ResponseField name="data[].cover_photo" type="string">
  The resolved cover image URL shown in the app for the video item.
</ResponseField>

<ResponseField name="data[].has_transcript" type="boolean">
  Whether this sermon has a published transcript available through `GET /v1/media/{mediaId}/transcript`.
</ResponseField>

<ResponseField name="per_page" type="number">
  The maximum number of video items returned in this page.
</ResponseField>

<ResponseField name="total" type="number">
  The total number of matching video items across all pages.
</ResponseField>

## Example response

```json theme={null}
{
  "current_page": 1,
  "data": [
    {
      "id": 577,
      "client_id": 12,
      "category_id": 1,
      "title": "Prayer Evening",
      "description": "Midweek prayer gathering",
      "source": "https://www.facebook.com/example/videos/123",
      "duration": "44:03",
      "media_type": "9",
      "cover_photo": "https://cdn.example.com/cover/prayer-evening.jpg",
      "has_transcript": true,
      "created_at": "2026-04-07T16:19:08.000000Z",
      "updated_at": "2026-04-07T16:19:08.000000Z"
    }
  ],
  "per_page": 10,
  "total": 1
}
```
