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

# Get User Reaction

> Get the authenticated user's reaction on a comment

Returns the authenticated user's current reaction on the specified comment, or `null` if they have not reacted.

**Authentication required.**

## Path Parameters

<ParamField path="commentId" type="string" required>
  The UUID of the comment.
</ParamField>

## Response

```json theme={null}
{ "reactionType": "like" }
```

or, if the user has no reaction:

```json theme={null}
{ "reactionType": null }
```
