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

# users_info

> Get profile information about a single Slack user.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://slack.com/api/users.info"}</code></div>

```python slack_users_info.py theme={null}
from charter.packs import slack

result = await slack.users_info.ainvoke({"user": ...})
```

<Note>
  Requires `chat:write`, `channels:read`, `groups:read`, `im:read`, `mpim:read`, `channels:history`, `groups:history`, `im:history`, `mpim:history`, `users:read`, `reactions:write`.
</Note>

## Query parameters

<div className="reference-table">
  | Field                                                        | Type      | Description                                                              |
  | ------------------------------------------------------------ | --------- | ------------------------------------------------------------------------ |
  | `user` <span className="required" title="required">\*</span> | `string`  | User to get info on, e.g. 'W1234567890'.                                 |
  | `includeLocale`                                              | `boolean` | Set this to true to receive the locale for this user. Defaults to false. |
</div>
