> ## 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 Current User

> Returns the authenticated member profile together with the active church context.

Returns the authenticated member profile together with their active church context.

## Request inputs

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

## Response fields

<ResponseField name="status" type="string" required>
  Indicates whether the member lookup completed successfully.
</ResponseField>

<ResponseField name="data" type="object" required>
  The authenticated member record returned from the API.
</ResponseField>

<ResponseField name="data.uuid" type="string">
  The member UUID linked to this member record.
</ResponseField>

<ResponseField name="data.client" type="object">
  The active church context currently attached to the member.
</ResponseField>

## Example response

```json theme={null}
{
  "status": "Success",
  "data": {
    "id": 1,
    "name": "Jane Doe",
    "email": "jane@example.com",
    "uuid": "member-user-123",
    "phone": null,
    "client": {
      "id": 12,
      "public_uuid": "11111111-2222-3333-4444-555555555555",
      "name": "Example Church",
      "timezone": "UTC",
      "date_format": "Y-m-d",
      "time_format": "H:i:s",
      "image": "https://cdn.example.com/clients/example.png"
    }
  }
}
```

The real response includes additional member and client fields. Sensitive values should not be stored client-side.
