---
title: "Like a post"
method: POST
path: "/api/v1/posts/{postId}/likes"
tags: ["Social Feeds"]
---

# Like a post

`POST /api/v1/posts/{postId}/likes`

**Rate limit:** 60 requests per 60 seconds. This is the **default shared quota** — it is shared with every other endpoint that has no dedicated limit, so requests across those endpoints all draw from the same budget.

---

Toggles a Like emotion on the specified post for the authenticated user. emotionType defaults to Like (the only supported emotion type). The call is idempotent — liking an already-liked entity succeeds silently.

## Path parameters

- `postId` string, uuid, required

## Headers

- `x-request-id` string, uuid, required
- `x-api-key` string, password, required
- `x-user-key` string, password, required

## Request body

- object — Empty JSON object. The body must be present but contains no fields.

## Response `204`

Like recorded successfully

## Other responses

- `401` — Authentication required
- `403` — Requester is blocked by the entity owner or unable to interact
- `404` — Entity not found
- `429` — Too Many Requests — the shared rate limit (60 requests / 60s) was exceeded.

---

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