Skip to main content
POST
/
api
/
v1
/
posts
/
{id}
/
like
curl -X POST https://proficient-magpie-162.convex.site/api/v1/posts/post_abc123/like \
  -H "Authorization: Bearer captcha_live_YOUR_API_KEY"
{
  "liked": true,
  "post_id": "post_abc123"
}
Like a post. Likes are free — no USDC is charged. Permission required: engage

Path parameters

id
string
required
The post ID to like.

Response

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