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

# List Bookmarks

> Lists the devotional bookmarks saved by the authenticated member.

Lists the devotional bookmarks saved by the authenticated member.

## Request inputs

<ParamField header="X-API-Key" type="string" required>
  Your client API key from the dashboard (Settings page).
</ParamField>

## Response fields

<ResponseField name="status" type="string" required>
  Indicates whether the bookmarks list loaded successfully.
</ResponseField>

<ResponseField name="data" type="object" required>
  The bookmarks wrapper returned for the authenticated member.
</ResponseField>

<ResponseField name="data.bookmarks" type="object[]">
  The devotional records the member has saved for later reading.
</ResponseField>

<ResponseField name="data.bookmarks[].pivot" type="object">
  Join-table metadata showing which member bookmarked which devotional record.
</ResponseField>

<ResponseField name="data.bookmarks[].thumbnail" type="string">
  The devotional cover image shown in saved-content views.
</ResponseField>

## Example response

```json theme={null}
{
  "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
        }
      }
    ]
  }
}
```
