/v1/actions/linkedin-extract-post-reposters/run/liveExtract LinkedIn Post Reposters returns every LinkedIn user who reshared a specific post, as structured rows with profile metadata. Reposters sit at the top of the engagement funnel — they care enough to amplify — so this is the densest signal layer on any post.
The action runs on the LinkedIn level and is built for teams tracking advocacy, amplification, and influencer activation.
You pass a LinkedIn post URL, Edges reads the reposts panel through your authenticated LinkedIn session, and it paginates through every reshare. Each row captures the reposter's profile and, when present, the commentary they added on reshare.
Runs execute on Edges infrastructure with safe rate pacing. Posts with hundreds of reposts are best handled async.
Use Extract LinkedIn Post Reposters whenever amplification is the signal you care about — identifying customer advocates, mapping influencers in your category, or measuring who actually stood behind a company announcement. It maps to the LinkedIn search API use case.
Marketing teams use it after launches to see which customers amplified. Partnership teams use it to find industry voices willing to co-create. Community teams use it to thank the people who carried a post further.
repostCommentary is often richer than the original comment thread — use it for qualitative tagging.Edges paginates the full reposter list. Large reshare counts are best processed async so the job completes in the background.
Your LinkedIn account. The reposts panel is read through your authenticated LinkedIn session on Edges, matching your manual browser view exactly.
Yes. Common chains are Extract LinkedIn Post Reposters into Extract LinkedIn Post Likers and Extract LinkedIn Post Commenters for a complete engagement graph, or into Follow LinkedIn Profile to reciprocate advocacy.
Run Extract LinkedIn Post Reposters from the Edges library, trigger it after every content drop, or call it from the Edges API. Browse the full Actions library for engagement primitives you can wire into your advocacy loop.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-post-reposters/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"
}
}'[
{
"last_name": "Doe",
"first_name": "John",
"full_name": "John Doe",
"linkedin_profile_id": 42,
"sales_navigator_profile_id": "example-123",
"linkedin_profile_handle": "example-123",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_profile_url": "https://www.linkedin.com/in/example-profile",
"reposter_connection_degree": "example_value",
"linkedin_post_url": "https://www.linkedin.com/in/example-profile",
"linkedin_repost_url": "https://www.linkedin.com/in/example-profile",
"linkedin_repost_id": 42,
"repost_text": "example_value"
}
]