Skip to main content
GET
/
v1
/
bulletins
/
{id}
Get Single Bulletin
curl --request GET \
  --url https://api.thefaithapp.com/v1/bulletins/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "bulletin": {},
  "bulletin.type": "<string>",
  "bulletin.sections": [
    {}
  ]
}
Retrieves a specific bulletin by its ID for the authenticated user’s church.
  • Requires both an API key and a TheFaithApp member bearer token.
  • Returns the complete bulletin with all its content and sections.
  • Use the bulletin ID from the list endpoint to retrieve specific bulletins.
  • Returns 404 if the bulletin is not found or doesn’t belong to the user’s church.

Request inputs

X-API-Key
string
required
Your client API key from the dashboard (Settings page).
id
number
required
Unique identifier of the bulletin to retrieve.

Response fields

bulletin
object
required
The published bulletin that matched the requested bulletin ID.
bulletin.type
string
The bulletin format, which helps the client choose between PDF viewing and native rendering.
bulletin.sections
object[]
Processed content sections 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"
  }
}