> ## 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 Public Church Profile

> Fetches the public church card used before a member joins or switches church context.

Returns a public-facing church profile by `public_uuid`.

## Request inputs

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

<ParamField path="uuid" type="string" required>
  Public UUID of the church.
</ParamField>

## Response fields

<ResponseField name="status" type="string" required>
  Indicates whether the public church profile was found.
</ResponseField>

<ResponseField name="data" type="object" required>
  The public-facing church card returned for the supplied `public_uuid`.
</ResponseField>

<ResponseField name="data.public_uuid" type="string">
  The stable public identifier developers can use when storing or linking to a church profile.
</ResponseField>

<ResponseField name="data.image" type="string">
  The resolved public image URL for the church.
</ResponseField>

## Example response

```json theme={null}
{
  "status": "Success",
  "data": {
    "id": 12,
    "name": "Example Church",
    "email": "info@examplechurch.com",
    "location": "Kampala, Uganda",
    "image": "https://cdn.example.com/clients/example.png",
    "about": "<p>A welcoming church community.</p>",
    "public_uuid": "11111111-2222-3333-4444-555555555555"
  }
}
```
