LinkedIn Post Likers Extractor extracts the LinkedIn profiles of individuals who liked a specific post.
/v1/actions/linkedin-like-post/run/liveLike LinkedIn Post adds a reaction to a specific LinkedIn post, so your engagement lands on the target's activity feed without you opening the app. You get a single-record primitive you can fire from scoring rules, scheduled flows, or triggered ABM sequences.
It runs on the LinkedIn level and uses your connected LinkedIn session, so every like is attributable to your account.
You pass the post URN or URL and an optional reaction type. Edges signs the request with your authenticated LinkedIn session, posts the reaction, and returns a typed status payload. The action runs on Edges infrastructure with safe pacing and retries, so you do not manage cookies or throttling yourself.
The operation is synchronous — by the time the run completes, the like is visible on the post and counted in the reaction aggregation you see on LinkedIn.
Reach for Like LinkedIn Post when engagement is a planned play, not a whim. Liking a prospect's post a few hours before your SDR sends a first-touch message is a proven warmup signal; automating it means you can do it at the scale your pipeline requires. The action plugs into the LinkedIn messaging & outreach API workflow.
Treat this as a social-primitive: invisible on its own, powerful when combined with message sends and comment activity.
like is fine, but matching reaction to content (insightful for data posts, celebrate for promotions) reads more human.One per run. Like LinkedIn Post is a per-record primitive — for bulk engagement, loop it over an input set sourced from Extract LinkedIn People Post Activity or Search LinkedIn Content.
Your LinkedIn account. You connect LinkedIn to Edges once, and every like runs through that authenticated session.
Yes. Common patterns chain it with LinkedIn Comment Post for a two-touch engagement, or with Message LinkedIn Profile once the warmup sequence is complete.
Add Like LinkedIn Post to any triggered engagement flow in Edges, or call it directly from the Edges API to automate your social layer. Browse the full Actions library for the surrounding engagement primitives.
curl -X POST "https://api.edges.run/v1/actions/linkedin-like-post/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_post_url": "https://www.linkedin.com/in/example-profile",
"custom_data": "example_value"
},
"parameters": {
"interaction_type": "example_value"
}
}'{
"reaction": "example_value",
"linkedin_post_url": "https://www.linkedin.com/in/example-profile"
}