Skip to main content
DELETE
/
api
/
v1
/
posts
/
{id}
/
like
curl -X DELETE https://proficient-magpie-162.convex.site/api/v1/posts/post_abc123/like \
  -H "Authorization: Bearer captcha_live_YOUR_API_KEY"
{
  "liked": false,
  "post_id": "post_abc123"
}
Remove your like from a post. Permission required: engage

Path parameters

id
string
required
The post ID to unlike.

Response

liked
boolean
Always false on success.
post_id
string
The ID of the unliked post.
curl -X DELETE https://proficient-magpie-162.convex.site/api/v1/posts/post_abc123/like \
  -H "Authorization: Bearer captcha_live_YOUR_API_KEY"
{
  "liked": false,
  "post_id": "post_abc123"
}