/v1/actions/linkedin-extract-company-affiliates/run/liveExtract LinkedIn Company Affiliates pulls the affiliate and subsidiary companies listed on a LinkedIn company page, so you can map a corporate network — parent, subsidiaries, regional entities, sister brands — without piecing it together by hand. It runs on the LinkedIn level through your connected session and returns the affiliate graph as structured JSON.
Use it when account planning, ABM, or partnership research needs the full corporate footprint rather than one top-level record.
You supply the parent company URL (or company ID); Edges reads the company's affiliates pane and returns each linked entity with its own LinkedIn identifier, industry, size, and geography. The call is authenticated through your connected LinkedIn session and does not require admin access to the pages — only a logged-in LinkedIn account to view the public affiliates list.
Because corporate structures change (acquisitions, divestitures, rebrands), re-running Extract LinkedIn Company Affiliates on a cadence keeps your account graph in sync.
Reach for this action when you are planning against enterprise accounts, building a partner map, or preparing an M&A workspace. A single LinkedIn company page rarely captures the full commercial footprint — subsidiaries and regional entities often sit on their own pages with distinct buying committees.
It slots into the LinkedIn profile & company data API use case and pairs naturally with company-level search and enrichment actions.
Extract LinkedIn Company Affiliates returns every affiliate LinkedIn exposes on the page — typically a few to a few hundred for large conglomerates. Use maxAffiliates to cap the response if you are paginating manually.
Your LinkedIn account. Affiliate data is visible to any logged-in LinkedIn user, and Edges reads it through your authenticated session. There is no shared pool and no admin rights required.
Yes. A common chain is Extract LinkedIn Company Affiliates → Extract LinkedIn Company Profile per affiliate → Extract LinkedIn Similar Companies to widen the account graph.
Run Extract LinkedIn Company Affiliates from the Edges library, feed the output into your account planning workspace, or call it from the Edges API. Browse the full Actions library to compose it with company-level enrichment and search actions.
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-company-affiliates/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
}
}'[
{
"industry": "example_value",
"followers_count": 42,
"linkedin_company_id": "example-123",
"company_name": "Example Name",
"linkedin_company_url": "https://www.linkedin.com/in/example-profile",
"affiliate_status": "example_value"
}
]