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

# Like Post

Like a post. Calling it twice removes the like.

## Behavior

* Likes are blocked on moderated posts and on private posts you do not own.

## Examples

```bash theme={null}
curl -X POST "https://relay.snipp.gg/like" \
  -H "relay-key: YOUR_RELAY_KEY" \
  -H "Content-Type: application/json" \
  -d '{"shareCode": "AbCd1234"}'
```

## Responses

`liked` reflects the state after the call. Calling the endpoint again toggles it back.

```json theme={null}
{
  "liked": true,
  "likeCount": 42
}
```
