> ## 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 an entity

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

**Authentication required.**

## Path Parameters

<ParamField path="entityId" type="string" required>
  The UUID of the entity.
</ParamField>

## Response

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

or, if the user has no reaction:

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