API Reference/Endpoints
List reactions on a post
GET/api/linkedin/gateway/posts/{post_id}/reactions
Pages through who reacted to a post, and what kind of reaction they left. Point comment_id at a comment instead to see reactions on that comment.
Authentication
Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401.
Path parameters
FieldTypeDescription
post_id *stringThe post's social_id, not necessarily the id visible in its URL.
Query parameters
FieldTypeDescription
account_id *stringA connected account's id.
comment_idstringList reactions on this comment instead of the post itself.
limitnumber1–100.
cursorstringFrom the previous page's paging.cursor, to continue paging.
Response fields
FieldTypeDescription
object"PostReactionList"Always this value.
items[].value"LIKE" | "PRAISE" | "APPRECIATION" | "EMPATHY" | "INTEREST" | "ENTERTAINMENT"Which reaction this is.
items[].authorobjectWho reacted — id, name, headline, and their network distance from the connected account.
pagingobject{ cursor, start, page_count, total_count }. cursor is null once exhausted.
Errors
·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.·404 Not Found. No post — or, if comment_id was set, no comment — exists for that id.