Skip to main content
GET
/
v1
/
devotionals
/
{id}
Get Single Devotional
curl --request GET \
  --url https://api.thefaithapp.com/v1/devotionals/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "status": "<string>",
  "devotional": {},
  "devotional.bible_reading": "<string>",
  "devotional.confession": "<string>",
  "devotional.is_recurring": 123
}

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.

Returns one devotional entry by ID for the authenticated member’s church.

Request inputs

X-API-Key
string
required
Your client API key from the dashboard (Settings page).
id
number
required
Unique identifier of the devotional to retrieve.

Response fields

status
string
required
Indicates whether the devotional lookup succeeded.
devotional
object
required
The full devotional entry returned for the requested ID.
devotional.bible_reading
string
Rich-text Bible reading content shown before the main devotional body.
devotional.confession
string
The confession or declaration content paired with the devotional.
devotional.is_recurring
number
A recurrence flag from the devotional record, where truthy values indicate the devotional can recur.

Example response

{
  "status": "Success",
  "devotional": {
    "id": 1,
    "client_id": 12,
    "date": "2025-04-25",
    "author": "Chris Oyakhilome",
    "title": "We’re Not Mere Humans",
    "bible_reading": "<p><strong><em>These things have I written...</em></strong></p>",
    "content": "<p>This simply lets us know that as Christians...</p>",
    "confession": "<p><strong>CONFESSION</strong></p>",
    "studies": "<p><strong>FURTHER STUDY:</strong></p>",
    "thumbnail": "https://cdn.example.com/devotionals/devotional-1.jpg",
    "tags": "[]",
    "is_recurring": 0,
    "recurrence_end_date": null,
    "version": 1,
    "original_id": null,
    "created_at": "2025-04-25T13:23:38.000000Z",
    "updated_at": "2025-06-30T09:46:20.000000Z"
  }
}