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": "FrancesJAhmad@rhyta.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-02T14:55:02.000000Z",
    "about": "<p>This is a life transforming and dynamic church</p>",
    "giving_link": "https://app.thefaithapp.com/give/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
      }
    ]
  }
}

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.