> ## 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.

# reactions_get

> Read the reactions on a message. They come back nested under `message.reactions`, each with the users who reacted.

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

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

result = await slack.reactions_get.ainvoke({"channel": ..., "timestamp": ...})
```

<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                                                            |
  | ----------------------------------------------------------------- | --------- | ---------------------------------------------------------------------- |
  | `channel` <span className="required" title="required">\*</span>   | `string`  | Channel where the message was posted.                                  |
  | `timestamp` <span className="required" title="required">\*</span> | `string`  | Timestamp of the message to read reactions from.                       |
  | `full`                                                            | `boolean` | Return the complete reaction list rather than Slack's abbreviated one. |
</div>
