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

# Get Current User

> Get profile information for the authenticated user

## Response

<ResponseField name="id" type="string" required>
  User ID (from Clerk)
</ResponseField>

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

<ResponseField name="name" type="string">
  User display name
</ResponseField>

<ResponseField name="subscription_tier" type="string" required>
  Current tier: `free`, `starter`, `pro`, `enterprise`
</ResponseField>

<ResponseField name="created_at" type="string" required>
  Account creation timestamp
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.destined.ai/v1/users/me" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```typescript TypeScript theme={null}
  const user = await client.users.getMeV1UsersMeGet();
  console.log(user.subscriptionTier);
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "user_abc123",
    "email": "user@example.com",
    "name": "John Doe",
    "subscription_tier": "pro",
    "created_at": "2024-01-01T00:00:00Z"
  }
  ```
</ResponseExample>
