/v1/actions/linkedin-extract-company-viewers/run/liveExtract Company Viewers pulls the list of viewers who have visited your LinkedIn company page, so you can treat profile-view activity as an intent signal instead of a curiosity. It runs on the LinkedIn level against the admin account you connect to Edges, which means it works for pages where your connected identity has admin access.
Use it to detect buyers researching your brand before they fill out a form and route those signals into your CRM for follow-up.
You supply the company page URL (or company ID) and Edges pulls the page viewers view through your connected LinkedIn admin session. The data mirrors what you see inside LinkedIn's Company Page Analytics, but returned as structured JSON rather than chart pixels. You get the viewer profile, the job title at the time of the visit, and the viewer's company, so you can match visits to accounts in your CRM.
Because viewer lists are refreshed continuously by LinkedIn, running Extract Company Viewers on a schedule — daily or hourly — gives you a rolling feed of intent signals.
Use Extract Company Viewers when intent signals drive your GTM motion. Buyers research a vendor's company page before they book a demo — those visits are a high-value signal that most teams ignore because they live inside LinkedIn's UI rather than a CRM.
It sits squarely inside the LinkedIn signals & intent API use case and is one of the cleaner intent signals you can pull from LinkedIn.
currentCompany to your ABM target list, route matches to SDRs as warm leads.LinkedIn returns a bounded viewer window (typically the last 90 days, capped by the page's analytics plan). Extract Company Viewers returns everything visible to your admin identity in a single run; schedule the action to keep a rolling feed.
Your LinkedIn account. The action requires admin access to the target company page, and the data is pulled through your authenticated session. There is no shared pool.
Yes. A common chain pipes Extract Company Viewers into Extract LinkedIn Profile for enrichment and then into Message LinkedIn Profile or Connect LinkedIn Profile for warm outreach.
Run Extract Company Viewers from the Edges library on a schedule, push viewers into your CRM as intent signals, or call it directly from the Edges API. Browse the full Actions library to compose it into a complete signal-driven outreach workflow.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-company-viewers/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
}
}'[
{
"view_date": "1990-01-01",
"linkedin_profile_handle": "example-123",
"headline": "Software Engineer at Example Corp",
"linkedin_profile_url": "https://www.linkedin.com/in/example-profile",
"sales_navigator_profile_id": "example-123",
"linkedin_profile_id": 42,
"profile_image_url": "https://www.linkedin.com/in/example-profile",
"linkedin_people_post_search_url": "https://www.linkedin.com/in/example-profile"
}
]