Skip to main content
GET
/
v1
/
bulletins
/
latest
Get Latest Bulletin
curl --request GET \
  --url https://api.thefaithapp.com/v1/bulletins/latest \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "bulletin": {},
  "bulletin.type": "<string>",
  "bulletin.sections": [
    {}
  ]
}
Retrieves the most recent bulletin for the authenticated user’s church.
  • Requires both an API key and a TheFaithApp member bearer token.
  • Returns the latest published bulletin with all its content and sections.
  • Useful for displaying the current bulletin on the main screen or dashboard.

Request inputs

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

Response fields

bulletin
object
required
The most recently published bulletin for the authenticated member’s church.
bulletin.type
string
The bulletin format, which tells the client whether to expect PDF content or rendered sections.
bulletin.sections
object[]
Processed section blocks for native bulletins.

Example response

{
  "bulletin": {
    "id": 14,
    "title": "June Bulletin",
    "type": "pdf",
    "content": "",
    "pdf_url": "https://cdn.example.com/bulletins/june-bulletin.pdf",
    "sections": [],
    "published_at": "2025-06-30 16:12:17",
    "formatted_date": "Jun 30, 2025 4:12 PM"
  }
}