---
title: "List reactions"
method: GET
path: "/reactions"
tags: ["Reactions"]
---

# List reactions

`GET /reactions`

Returns a paginated list of emoji reactions on a specific message or forum post, sorted by most recent.

Required permissions:
 - `chat:read`

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.
- `resource_id` string, required — The unique identifier of the message or forum post to list reactions for.

## Response `200`

A successful response

- object — The connection type for Reaction.
  - `data` ReactionListItem[], required — A list of nodes.
    - `emoji` string, nullable, required — The emoji used for this reaction in shortcode format. Null if the reaction type is not emoji.
    - `id` string, required — The unique identifier for the entity
    - `resource_id` string, required — The unique identifier of the post this reaction was left on.
    - `user` object, required — The user who left this reaction on the post.
      - `id` string, required — The unique identifier for the user.
      - `name` string, nullable, required — The user's display name shown on their public profile.
      - `username` string, required — The user's unique username shown on their public profile.
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

[API](https://skmtc.net/whop/apis/whop-api.md) · [All operations](https://skmtc.net/whop/apis/whop-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whop/whop-api/versions/a8a43db4255f/schema)
