/v1/actions/linkedin-extract-page-followers/run/liveExtract LinkedIn Page Followers pulls the list of people who follow a LinkedIn company page you administer, returning structured rows with profile metadata. Instead of a follower count in the admin dashboard, you get an actionable dataset.
The action runs on the LinkedIn level and is built for marketers, founders, and revenue teams who want to turn brand followers into pipeline.
You provide the LinkedIn company page URL or ID you administer, and Edges paginates the follower list through your authenticated LinkedIn session. Only page admins can read this data — the action surfaces what you can already see in the LinkedIn admin console, in structured form.
Runs execute on Edges infrastructure with safe rate pacing. Very large follower bases are processed async so pagination completes cleanly.
Reach for Extract LinkedIn Page Followers when the page follower count is a pipeline proxy — when you know a meaningful share of followers are buyers, champions, or champions-in-waiting. It maps to the LinkedIn search API use case.
Most B2B teams run it monthly to intersect with their target account list and flag buying signals the sales org can action.
Edges paginates the full list. Pages with hundreds of thousands of followers should run async so the job completes in the background.
Your account. Because page follower lists are admin-only, the extract uses your authenticated LinkedIn session and the admin permissions it carries.
Yes. Common chains are into Extract Linkedin User Contact Info for email enrichment, or Follow LinkedIn Profile to reciprocate on high-fit followers.
Run Extract LinkedIn Page Followers from the Edges library, schedule it monthly, or call it from the Edges API. Browse the full Actions library for follow-on actions you can chain to your CRM sync.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-page-followers/run/live" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-H "Content-Type: application/json" \
-d '{
"identity_ids": [
"your-identity-uuid"
],
"identity_mode": "direct",
"input": {
"custom_data": "example_value",
"linkedin_company_url": "https://www.linkedin.com/in/example-profile",
"linkedin_company_id": 10
}
}'[
{
"first_name": "John",
"last_name": "Doe",
"full_name": "John Doe",
"sales_navigator_profile_id": "example-123",
"headline": "Software Engineer at Example Corp",
"linkedin_profile_handle": "example-123",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"followed_at": "example_value",
"profile_image_url": "https://www.linkedin.com/in/example-profile",
"linkedin_people_post_search_url": "https://www.linkedin.com/in/example-profile",
"linkedin_profile_id": 42
}
]