> ## 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 Home Feed

> Loads the member-facing home payload, including church context, content, and the latest bulletin.

Loads the main home payload for the authenticated member, including featured content, the latest bulletin, and church summary data.

## Optional headers

* `X-Client-Timezone`: use the member's current timezone when resolving time-sensitive content.

## Request inputs

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

<ParamField header="X-Client-Timezone" type="string">
  Optional IANA timezone identifier supplied by the client.
</ParamField>

## Response fields

<ResponseField name="status" type="string" required>
  Indicates whether the home feed was assembled successfully.
</ResponseField>

<ResponseField name="data" type="object" required>
  The complete home-screen payload for the signed-in member.
</ResponseField>

<ResponseField name="data.events" type="object[]">
  Upcoming church events selected for the home experience.
</ResponseField>

<ResponseField name="data.audios" type="object[]">
  Recently published audio sermons for this church.
</ResponseField>

<ResponseField name="data.videos" type="object[]">
  Recently published video sermons or linked video media.
</ResponseField>

<ResponseField name="data.devotionals" type="object[]">
  The current devotional items surfaced on the home screen.
</ResponseField>

<ResponseField name="data.bulletin" type="object">
  The latest published bulletin, when one exists for the church.
</ResponseField>

<ResponseField name="data.church" type="object">
  A lightweight church summary used for branding the home screen.
</ResponseField>

## Example response

```json theme={null}
{
  "status": "Success",
  "data": {
    "events": [
      {
        "id": 88,
        "title": "Sunday Service",
        "date": "2026-06-02T09:00:00.000000Z"
      }
    ],
    "audios": [
      {
        "id": 30,
        "title": "Sample Prayer",
        "source": "https://cdn.example.com/audios/sample-prayer.mp3",
        "media_type": "0"
      }
    ],
    "videos": [
      {
        "id": 577,
        "title": "Prayer Evening",
        "source": "https://www.facebook.com/example/videos/123",
        "media_type": "9"
      }
    ],
    "devotionals": [
      {
        "id": 21,
        "title": "Where Does Your Hope Lie?",
        "occurrence_date": "2026-02-26"
      }
    ],
    "bulletin": {
      "id": 14,
      "title": "June Bulletin",
      "type": "pdf",
      "pdf_url": "https://cdn.example.com/bulletins/june-bulletin.pdf"
    },
    "church": {
      "id": 12,
      "name": "Example Church",
      "image": "https://cdn.example.com/clients/example.png"
    }
  }
}
```
