// ACTION

Live

Find 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

NameTypeRequiredDescription
profileIdstringRequiredConnected LinkedIn profile.
postIdstringRequiredThe post's social_id (returned by Get User Posts), not the numeric ID in the post URL.
commentIdstringOptionalGet reactions on a specific comment instead of the post.
limit numberOptionalReactions per page, up to 100.
cursorstringOptionalPagination 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