// ACTION
LiveFind LinkedIn Post Commenters (Post Comments API)
// OVERVIEW
What it does
List the comments on a LinkedIn post, including the full comment text and full author details.
Commenters are a higher-intent signal than reactions, and their words give AI real material to personalize outreach with.
// 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. |
limit | number | Optional | Comments per page, up to 100. |
cursor | string | Optional | Pagination cursor. |
// OUTPUT SHAPE
Example JSON output
{
"items": [
{
"text": "This matches what we see in outbound.",
"author": {
"provider_id": "ACoAA...",
"name": "Marcus Patel",
"headline": "Head of Growth at Northwind",
"company": "Northwind",
"profile_url": "https://www.linkedin.com/in/mpatel"
}
}
],
"cursor": "eyJwYWdlIjoy..."
}// INVOCATION
How to call
Resource: PostOperation: Get Comments
// 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