Skip to content

Returns the members who liked a post, with their public profiles, for the reaction list popover.

Capped at 100 distinct users with no pagination, so a very popular post shows a truncated list. Only like reactions are returned; bookmarks are stored in the same table but excluded.

Endpoint

  • Method: GET
  • Path: /feeds/{feed_id}/reactions
  • Edition: Core
  • Controller: ReactionController@getByFeedId
  • Route source: fluent-community/app/Http/Routes/api.php:75
  • 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 Feed Reactions

GET
/feeds/{feed_id}/reactions

Returns the members who liked a post, with their public profiles, for the reaction list popover.

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

Authorizations

ApplicationPasswords

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

Type
API Key (header: Authorization)

Parameters

Path Parameters

feed_id*

Feed 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