Skip to main content
GET
/
v1
/
home
Get Home Feed
curl --request GET \
  --url https://api.thefaithapp.com/v1/home \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
import requests

url = "https://api.thefaithapp.com/v1/home"

headers = {
"X-API-Key": "<x-api-key>",
"Authorization": "Bearer <token>"
}

response = requests.get(url, headers=headers)

print(response.text)
const options = {
method: 'GET',
headers: {'X-API-Key': '<x-api-key>', Authorization: 'Bearer <token>'}
};

fetch('https://api.thefaithapp.com/v1/home', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.thefaithapp.com/v1/home",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"X-API-Key: <x-api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.thefaithapp.com/v1/home"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-Key", "<x-api-key>")
req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.thefaithapp.com/v1/home")
.header("X-API-Key", "<x-api-key>")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.thefaithapp.com/v1/home")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<x-api-key>'
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "status": "<string>",
  "data": {},
  "data.events": [
    {}
  ],
  "data.audios": [
    {}
  ],
  "data.videos": [
    {}
  ],
  "data.devotionals": [
    {}
  ],
  "data.bulletin": {},
  "data.church": {}
}
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

X-API-Key
string
required
Your client API key from the dashboard (Settings page).
X-Client-Timezone
string
Optional IANA timezone identifier supplied by the client.

Response fields

status
string
required
Indicates whether the home feed was assembled successfully.
data
object
required
The complete home-screen payload for the signed-in member.
data.events
object[]
Upcoming church events selected for the home experience.
data.audios
object[]
Recently published audio sermons for this church.
data.videos
object[]
Recently published video sermons or linked video media.
data.devotionals
object[]
The current devotional items surfaced on the home screen.
data.bulletin
object
The latest published bulletin, when one exists for the church.
data.church
object
A lightweight church summary used for branding the home screen.

Example response

{
  "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"
    }
  }
}