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

# Get Notifications

Retrieves a paginated list of notifications for the authenticated user's church.

* Requires both an API key and a TheFaithApp member bearer token.
* Supports optional pagination.

## Request inputs

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

<ParamField query="page" type="number">
  Page number for pagination (default: 1).
</ParamField>

## Response fields

<ResponseField name="current_page" type="number">
  The current page of church-wide notifications.
</ResponseField>

<ResponseField name="data" type="object[]" required>
  The shared notification feed for the authenticated member's church.
</ResponseField>

<ResponseField name="data[].image_url" type="string">
  The resolved church image shown alongside each church-wide notification.
</ResponseField>

<ResponseField name="per_page" type="number">
  The maximum number of notification records returned in this page.
</ResponseField>

<ResponseField name="total" type="number">
  The total number of church notifications available across all pages.
</ResponseField>

## Example response

```json theme={null}
{
  "current_page": 1,
  "data": [
    {
      "id": 9,
      "client_id": 12,
      "title": "Prayer and Fasting Week",
      "body": "<p>Join us this week for prayer and fasting.</p>",
      "created_at": "2026-05-27T09:00:00.000000Z",
      "updated_at": "2026-05-27T09:00:00.000000Z",
      "image_url": "https://cdn.example.com/clients/example.png"
    }
  ],
  "per_page": 10,
  "total": 1
}
```

For member-specific notifications, see the `Manage User Notifications` page.
