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



## OpenAPI

````yaml /api-reference/openapi.json get /v1/home
openapi: 3.1.0
info:
  title: TheFaithApp Partner API
  version: 1.0.0
  description: >-
    The v1 API for third-party apps that sign in TheFaithApp members and access
    church-scoped content and workflows.
  contact:
    name: TheFaithApp Support
    email: support@thefaithapp.com
servers:
  - url: https://api.thefaithapp.com
    description: Production
security:
  - apiKeyAuth: []
    bearerAuth: []
tags:
  - name: Hosted Auth
    description: Sign members in through the hosted TheFaithApp authentication flow.
  - name: Core Experience
    description: Load member context and the personalized home experience.
  - name: Content
    description: >-
      Read sermons, media, YouTube videos, devotionals, and streaming
      configuration.
  - name: Engagement
    description: Manage member favorites and devotional bookmarks.
  - name: Churches
    description: Read church profiles, public directory records, and branch information.
  - name: Events & Volunteers
    description: >-
      Browse events and volunteer opportunities, then manage registrations and
      commitments.
  - name: Notifications & Bulletins
    description: Read church and member notifications and published bulletins.
  - name: Prayer
    description: Submit a prayer request for the authenticated member.
  - name: Member Connections
    description: Manage the member’s campus and ministry connections.
  - name: Community Groups
    description: >-
      Discover groups and manage membership, feeds, attendance, study guides,
      and leader notes.
  - name: Community Preferences & Research
    description: >-
      Manage community preferences, summaries, and consent-based research
      participation.
  - name: Resource Sharing
    description: Offer shared resources and manage member loan requests and transitions.
  - name: Mutual Aid
    description: >-
      Manage needs and offers, private responses, safety reports, and member
      activity.
  - name: Analytics
    description: Record product analytics events and retrieve aggregate metrics.
  - name: Notification Analytics
    description: Record and summarize notification delivery, open, and click events.
paths:
  /v1/home:
    get:
      tags:
        - Core Experience
      summary: Get Home Feed
      description: >-
        Loads the member-facing home payload, including church context, content,
        and the latest bulletin.
      operationId: getHome
      parameters:
        - name: X-Client-Timezone
          in: header
          description: Optional IANA timezone identifier supplied by the client.
          required: false
          schema:
            type: string
            example: Africa/Kampala
      responses:
        '200':
          description: Home payload returned successfully.
          content:
            application/json:
              schema:
                type: object
              example:
                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
        '401':
          description: Unauthorized - Missing or invalid API key or member bearer token.
        '404':
          description: Member not found.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Client API key copied from Developer Access in the TheFaithApp
        dashboard.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum
      description: Member access token returned by `POST /v1/auth/token`.

````