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

# Current User

Retrieve information about the currently authenticated user and their account details.

## currentUser

Retrieves detailed information about the currently authenticated user, including profile data, preferences, and permissions.

### Signature

```graphql theme={null}
currentUser: User!
```

### Parameters

This query takes no parameters and returns information for the currently authenticated user based on the provided bearer token.

### Response type

Returns a `User` object containing comprehensive user information. See the [User Objects](/integrations/graphql-api/objects/user) documentation for complete field definitions.

## Authentication

User queries require authentication via bearer token. Include your API token in the Authorization header:

```
Authorization: Bearer YOUR_API_TOKEN
```

## Next steps

<CardGroup cols={2}>
  <Card title="User Objects" icon="user" href="/integrations/graphql-api/objects/user">
    Complete reference for user-related objects
  </Card>
</CardGroup>
