GET
/
v1
/
open
/
devotionals
curl --request GET \
  --url https://app.thefaithapp.com/api/v1/open/devotionals \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "current_page": 1,
  "data": [
    {
      "id": 1,
      "client_id": 2,
      "thumbnail": "https://d2c58p2vdu8kb2.cloudfront.net/devotionals/NIh2IeZv2g1k4AoNVhkoQarVWAkSAAnQLrr4DF7j.jpg",
      "title": "We’re Not Mere Humans",
      "author": "Chris Oyakhilome",
      "content": "<div class=\"wp-block-media-text alignwide\">...</div>",
      "bible_reading": "<p><strong><em>These things have I written unto you...</em></strong></p>",
      "confession": "<p><strong>CONFESSION</strong></p>...",
      "studies": "<p><strong>FURTHER STUDY:</strong></p>...",
      "date": "2025-05-03",
      "created_at": "2025-05-03T06:04:22.000000Z",
      "updated_at": "2025-05-03T06:07:05.000000Z",
      "deleted_at": null,
      "tags": "[\"prayer\"]"
    }
  ],
  "first_page_url": "https://app.thefaithapp.com/api/v1/open/devotionals?page=1",
  "from": 1,
  "last_page": 1,
  "last_page_url": "https://app.thefaithapp.com/api/v1/open/devotionals?page=1",
  "links": [
    {
      "url": null,
      "label": "&laquo; Previous",
      "active": false
    },
    {
      "url": "https://app.thefaithapp.com/api/v1/open/devotionals?page=1",
      "label": "1",
      "active": true
    },
    {
      "url": null,
      "label": "Next &raquo;",
      "active": false
    }
  ],
  "next_page_url": null,
  "path": "https://app.thefaithapp.com/api/v1/open/devotionals",
  "per_page": 30,
  "prev_page_url": null,
  "to": 1,
  "total": 1
}

Retrieves a paginated list of devotionals for the authenticated user’s church.

  • Requires both an API key and a Firebase ID token.
  • Supports optional search and pagination.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Key
string
required

Your client API key from the dashboard (Settings page).

Query Parameters

Search term to filter devotionals.

page
integer
default:1

Page number for pagination (default: 1).

Response

200
application/json
Paginated list of devotionals.

The response is of type object.