/v1/actions/linkedin-extract-people-comment-activity/run/liveExtract LinkedIn People Comment Activity pulls every comment a LinkedIn user has posted from their activity feed into structured rows. Each row includes the comment text, the target post, and the post author — so you can see not just what someone said, but where they are engaging.
The action runs on the LinkedIn level and is built for buyer-intent workflows that care about what people engage with, not just who they are.
You pass a LinkedIn profile URL, Edges reads the Activity → Comments tab through your authenticated session, and it paginates through the comment history. Results come back as JSON rows, one per comment.
Runs execute on Edges infrastructure with safe rate pacing. Profiles with long comment histories should run async so pagination can complete cleanly.
Use Extract LinkedIn People Comment Activity when comment behaviour is the buying signal you care about — a prospect debating vendors in a public comment thread, a champion advocating publicly for a competitor, a decision-maker asking "how do you solve X?" under an industry post. It maps to the LinkedIn signals & intent API use case.
It is also the cleanest primitive for feeding an LLM that scores "hot" vs "cold" prospects based on the topics they publicly engage with.
since filter to limit to a recent window.Edges paginates the full comment history exposed on the profile. For profiles with years of activity, run async to avoid single-request timeouts.
Your LinkedIn account. Activity is read through your authenticated session on Edges, so visibility matches what you can see manually on the profile.
Yes. A standard pattern is Extract LinkedIn People Comment Activity into Extract LinkedIn Post for post context, then into Message LinkedIn Profile for a referenced first touch.
Run Extract LinkedIn People Comment Activity from the Edges library, schedule it per account, or call it directly from the Edges API. Browse the full Actions library for signal primitives you can chain together.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-people-comment-activity/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
}
}'[
{
"comment_like_count": 42,
"comment_reply_count": 42,
"linkedin_comment_id": "example-123",
"linkedin_comment_url": "https://www.linkedin.com/in/example-profile",
"comment_text": "example_value",
"author_comment_reply": "example_value",
"comment_time": "example_value",
"linkedin_post_id": "example-123",
"linkedin_post_url": "https://www.linkedin.com/in/example-profile",
"comment_type": "example_value",
"linkedin_activity_id": "example-123",
"author": {
"key": "value"
},
"source_post": {
"key": "value"
},
"activity_author": {
"key": "value"
}
}
]