Skip to main content

Get Interactions

Get all interaction counts for a post:
GET /api/posts/{postId}/interactions
{
  "likes": 42,
  "comments": 15,
  "shares": 8,
  "userLiked": true,
  "userShared": false
}

Share Post

POST /api/posts/{postId}/share
Authorization: Bearer <token>

Unshare Post

DELETE /api/posts/{postId}/share
Authorization: Bearer <token>