Skip to main content
GET
/
v1
/
bookmarks
List Bookmarks
curl --request GET \
  --url https://api.thefaithapp.com/v1/bookmarks \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "status": "<string>",
  "data": {},
  "data.bookmarks": [
    {}
  ],
  "data.bookmarks[].pivot": {},
  "data.bookmarks[].thumbnail": "<string>"
}

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.

Lists the devotional bookmarks saved by the authenticated member.

Request inputs

X-API-Key
string
required
Your client API key from the dashboard (Settings page).

Response fields

status
string
required
Indicates whether the bookmarks list loaded successfully.
data
object
required
The bookmarks wrapper returned for the authenticated member.
data.bookmarks
object[]
The devotional records the member has saved for later reading.
data.bookmarks[].pivot
object
Join-table metadata showing which member bookmarked which devotional record.
data.bookmarks[].thumbnail
string
The devotional cover image shown in saved-content views.

Example response

{
  "status": "Success",
  "data": {
    "bookmarks": [
      {
        "id": 1,
        "title": "We’re Not Mere Humans",
        "author": "Chris Oyakhilome",
        "thumbnail": "devotionals/example-devotional.jpg",
        "pivot": {
          "member_id": 1,
          "devotional_id": 1
        }
      }
    ]
  }
}