// ACTION
LiveFind Who Liked a LinkedIn Post (Post Reactions API)
// OVERVIEW
What it does
List the people who reacted to a LinkedIn post, including full author details.
These are warm leads who already engaged with your topic, the raw material for signal-based prospecting. Optionally target reactions on a specific comment.
// PARAMETERS
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
profileId | string | Required | Connected LinkedIn profile. |
postId | string | Required | The post's social_id (returned by Get User Posts), not the numeric ID in the post URL. |
commentId | string | Optional | Get reactions on a specific comment instead of the post. |
limit | number | Optional | Reactions per page, up to 100. |
cursor | string | Optional | Pagination cursor. |
// OUTPUT SHAPE
Example JSON output
{
"items": [
{
"reaction_type": "LIKE",
"author": {
"provider_id": "ACoAA...",
"name": "Jane Doe",
"headline": "VP Sales at Acme",
"company": "Acme",
"profile_url": "https://www.linkedin.com/in/jane-doe"
}
}
],
"cursor": "eyJwYWdlIjoy..."
}// INVOCATION
How to call
Resource: PostOperation: Get Reactions
// CONSTRAINTS
Limits & status
Up to 100 per page, paginate with cursor. Automatic rate limiting.
// USED IN
Playbooks using this Action
// GET STARTED
Start building with Periodix Actions
Create an account, get an API key, and call this Action from your stack.
Create your account