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

# Get current user

> Return the authenticated user's profile.

Returns the profile of the currently authenticated user, including their active organization and project.

<Note>
  Requires authentication via `X-API-Key: sf_your_api_key_here`.
</Note>

## Response

<ResponseField name="success" type="boolean">
  `true` on success.
</ResponseField>

<ResponseField name="data" type="object">
  <Expandable title="data fields">
    <ResponseField name="id" type="string">UUID of the user.</ResponseField>
    <ResponseField name="email" type="string">User's email address.</ResponseField>
    <ResponseField name="first_name" type="string">First name.</ResponseField>
    <ResponseField name="last_name" type="string">Last name.</ResponseField>
    <ResponseField name="active_organization_id" type="string">UUID of the user's active organization.</ResponseField>
    <ResponseField name="active_project_id" type="string">UUID of the user's active project.</ResponseField>
    <ResponseField name="is_guest" type="boolean">Whether the user is a guest.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "email": "jane@example.com",
      "first_name": "Jane",
      "last_name": "Smith",
      "active_organization_id": "660e8400-e29b-41d4-a716-446655440001",
      "active_project_id": "770e8400-e29b-41d4-a716-446655440002",
      "is_guest": false
    }
  }
  ```
</ResponseExample>
