Skip to content

Returns the members who liked a comment, with their public profiles.

Capped at 100 distinct users with no pagination. Access is validated against the parent post, so a comment on an unreachable post returns a 404.

Endpoint

  • Method: GET
  • Path: /comments/{comment_id}/reactions
  • Edition: Core
  • Controller: ReactionController@getByCommentId
  • Route source: fluent-community/app/Http/Routes/api.php:143
  • Controller source: fluent-community/app/Http/Controllers/ReactionController.php

Live sample

The request and response below were recorded against a running FluentCommunity install and then anonymised — member names, emails, avatars and post content are fictional, and long collections are trimmed to a few entries.

GET List Comment Reactions

GET
/comments/{comment_id}/reactions

Returns the members who liked a comment, with their public profiles.

Controller: ReactionController@getByCommentId
Route source: fluent-community/app/Http/Routes/api.php:143

Authorizations

ApplicationPasswords

WordPress Application Passwords — use Basic auth with username:application_password.

Type
API Key (header: Authorization)

Parameters

Path Parameters

comment_id*

Comment ID extracted from the URL path.

Type
integer
Required

Responses

Successful response

application/json
JSON
{
  
"reactions": [
  
  
{
  
  
  
"additionalProperties": "string"
  
  
}
  
]
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI

FluentCommunity developer documentation