> ## Documentation Index
> Fetch the complete documentation index at: https://docs.runaether.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Profile

> Get the authenticated user's profile

Returns the profile of the currently authenticated user.

## Authentication

Requires a valid Bearer token.

## Response

<ResponseField name="id" type="string" required>
  User ID (UUID).
</ResponseField>

<ResponseField name="email" type="string" required>
  User email address.
</ResponseField>

<ResponseField name="created_at" type="string" required>
  ISO 8601 timestamp.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "d4e5f6a7-8901-23ab-cdef-456789012cde",
    "email": "user@example.com",
    "created_at": "2025-01-10T08:00:00Z"
  }
  ```
</ResponseExample>

## Errors

| Status | Description                             |
| ------ | --------------------------------------- |
| `401`  | Unauthorized — missing or invalid token |
