GET
/
v1
/
open
/
church
curl --request GET \
  --url https://app.thefaithapp.com/api/v1/open/church \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <x-api-key>'
{
  "church": {
    "id": 2,
    "name": "Monk House Maker",
    "email": "emilyjanemdn@gmail.com",
    "location": "4078 Poco Mas Drive",
    "image": "https://d2c58p2vdu8kb2.cloudfront.net/clients/wcwOY98v6H9Aq4ag8vOnDXMgGXfyZyIJmRyBguj9.jpg",
    "created_at": "2025-02-08T11:55:32.000000Z",
    "updated_at": "2025-05-24T07:56:51.000000Z",
    "about": "<p data-start=\"86\" data-end=\"423\"><strong data-start=\"86\" data-end=\"109\">Kingdom Life Church</strong> is a Christ-centered community passionate about worship, discipleship, and outreach. Located in the heart of the city, we welcome people from all walks of life to experience the love and grace of God. Our mission is to raise up faithful believers who impact their families, workplaces, and communities for Christ.</p>\n<p data-start=\"425\" data-end=\"872\">One of our core ministries is the <strong data-start=\"459\" data-end=\"482\">Compassion Ministry</strong>, which focuses on serving the practical needs of those around us. From monthly food drives and clothing donations to visiting the sick and supporting single-parent homes, this ministry is rooted in the belief that small acts of kindness can lead to life-changing encounters with God. Volunteers in this ministry are the hands and feet of Jesus, spreading hope and love throughout the city.</p>\n<p data-start=\"874\" data-end=\"1153\">Whether you're looking for a place to grow spiritually or a way to make a difference, the Compassion Ministry offers a meaningful way to serve. We invite anyone with a heart to help others to join us as we continue to be a light in our community, one act of compassion at a time.</p>",
    "giving_link": "http://127.0.0.1:8000/give/2",
    "prayer_request_link": "http://127.0.0.1:8000/prayer-requests/2",
    "socials": {
      "id": 1,
      "client_id": 2,
      "facebook": "www.facebook.com/monkhouse",
      "instagram": "www.instagram.com/monk_house",
      "twitter": "www.x.com/monkhouse_",
      "youtube": "www.youtube.com/@mkhouse",
      "tiktok": "www.tiktok.com/@mk2000",
      "deleted_at": null,
      "created_at": "2025-05-03T06:31:31.000000Z",
      "updated_at": "2025-05-03T06:31:31.000000Z"
    },
    "branches": [
      {
        "id": 1,
        "client_id": 2,
        "name": "Reno Branch",
        "location": "596 Sheila Lane Reno, NV 89501",
        "pastor": "Katelyn C. Warne",
        "contact": "+1 775-370-2016",
        "created_at": "2025-05-03T06:32:50.000000Z",
        "updated_at": "2025-05-03T06:32:50.000000Z",
        "deleted_at": null
      }
    ],
    "gatherings": [
      {
        "id": 1,
        "client_id": 2,
        "gathering_type_id": 1,
        "name": "First Service",
        "day_of_week": "Sunday",
        "start_time": "2025-05-24T10:00:00.000000Z",
        "end_time": "2025-05-24T13:51:00.000000Z",
        "description": "This is our first service",
        "is_active": true,
        "created_at": "2025-05-24T07:51:09.000000Z",
        "updated_at": "2025-05-24T08:26:30.000000Z",
        "deleted_at": null
      }
    ]
  }
}

Retrieves the profile information for the authenticated user’s church.

  • Requires both an API key and a Firebase ID token.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Key
string
required

Your client API key from the dashboard (Settings page).

Response

200
application/json

Church profile information.

The response is of type object.