---
title: "Get reactions for a comment"
method: GET
path: "/v1/files/{file_key}/comments/{comment_id}/reactions"
tags: ["Comment Reactions"]
---

# Get reactions for a comment

`GET /v1/files/{file_key}/comments/{comment_id}/reactions`

Gets a paginated list of reactions left on the comment.

## Path parameters

- `file_key` string, required
- `comment_id` string, required

## Query parameters

- `cursor` string

## Response `200`

Response from the GET /v1/files/{file_key}/comments/{comment_id}/reactions endpoint.

- object
  - `reactions` Reaction[], required — An array of reactions.
    - `user` User, required — A description of a user.
      - `id` string, required — Unique stable id of the user.
      - `handle` string, required — Name of the user.
      - `img_url` string, required — URL link to the user's profile image.
    - `emoji` string, required — The emoji type of reaction as shortcode (e.g. `:heart:`, `:+1::skin-tone-2:`). The list of accepted emoji shortcodes can be found in [this file](https://raw.githubusercontent.com/missive/emoji-mart/main/packages/emoji-mart-data/sets/14/native.json) under the top-level emojis and aliases fields, with optional skin tone modifiers when applicable.
    - `created_at` string, date-time, required — The UTC ISO 8601 time at which the reaction was left.
  - `pagination` ResponsePagination, required — If pagination is needed due to the length of the response, identifies the next and previous pages.
    - `prev_page` string — A URL that calls the previous page of the response.
    - `next_page` string — A URL that calls the next page of the response.

## Other responses

- `403` — The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account of some sort.
- `404` — The requested file or resource was not found.
- `429` — In some cases API requests may be throttled or rate limited. Please wait a while before attempting the request again (typically a minute).
- `500` — An internal server error occurred.

## Changes

- **2026-05-06** `2c69c439e847` — 1 info
  - the endpoint scheme security `PlanAccessToken` was added to the API
- **2025-04-24** `8014b4aceb2f` — 1 info
  - the security scope `file_comments:read` was added to the endpoint's security scheme `OAuth2`
- **2023-12-14** `de5c0106668d` — 2 info
  - the endpoint scheme security `PlanAccessToken` was removed from the API
  - the security scope `file_comments:read` was removed from the endpoint's security scheme `OAuth2`

[Change history](https://skmtc.dev/figma/apis/figma-api/changes/v1/files/:file_key/comments/:comment_id/reactions/get.md)

---

[API](https://skmtc.dev/figma/apis/figma-api.md) · [All operations](https://skmtc.dev/figma/apis/figma-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/figma/figma-api/revisions/d7ab5681d84c/schema)
