Extract LinkedIn Similar Companies

LinkedIn Similar Companies Extractor extracts the companies that are similar to the companies you input.

Edges is not related to LinkedIn and is not an official LinkedIn product.

API Endpoint

POST/v1/actions/linkedin-extract-similar-companies/run/live

Parameters

Input Parameters

Integration Parameters

Guide

What Extract LinkedIn Similar Companies does

Extract LinkedIn Similar Companies takes a LinkedIn company URL and returns the set of companies LinkedIn considers similar — adjacent products, competitors, and peers in the same category. It runs on the LinkedIn level and is the fastest way to turn a single known account into a discovery-ready list of lookalikes for ABM, market mapping, or competitive research.

The action gives you the raw similar-company object (name, URL, industry, headcount band) so you can merge it into your own account list without re-scraping.

How it works

You pass in a LinkedIn company URL or companyId, Edges requests the similar-companies panel through your authenticated LinkedIn session, and the list is parsed into a typed JSON array. The operation is synchronous for a single seed company — you get the full list in one call.

The action runs on Edges infrastructure, browser-less and rate-paced, so you do not manage throttling yourself. If the seed company has no similar-companies panel (rare, but happens for very small or very new pages), Edges returns an empty list rather than an error.

When to use Extract LinkedIn Similar Companies

Use this action when you have one good account and want ten more like it — without manually Googling competitors or waiting for a firmographic vendor to match. It fits the LinkedIn profile & company data API use case and slots into ABM list-building, market research, and competitor monitoring workflows.

Extract LinkedIn Similar Companies is typically the discovery step in a pipeline: seed with known customers, expand to lookalikes, then enrich.

Use cases

  • ABM list expansion. Feed your top 20 closed-won accounts into the action and build a tier-1 ABM list of lookalikes in minutes.
  • Competitive mapping. Given your own company URL, pull the peers LinkedIn surfaces and monitor their pages for headcount moves or content.
  • Investor research. Starting from a portfolio company, build a list of similar companies to evaluate for market sizing or acquisition targeting.
  • Partnership discovery. Find companies adjacent to an existing partner and prioritize outreach for co-marketing or integrations.
  • Content targeting. Pair with Extract LinkedIn Page Followers to surface the combined audience of similar companies for sponsored content planning.

Best practices

  • Seed with multiple companies. LinkedIn's similar set is narrow per seed. Running Extract LinkedIn Similar Companies across five well-chosen seeds gives you broader coverage than one.
  • Dedupe and rank. Merge outputs across seeds; companies that appear in multiple similar sets are stronger ABM candidates than singletons.
  • Enrich before outreach. The similar-companies payload is a discovery object. Chain Extract LinkedIn Company Profile to get full firmographics before you build sequences.
  • Cache on `companyId`. Similar-company results are stable week over week. Cache outputs and refresh on a schedule (monthly is usually enough).

Common questions

How many similar companies can I extract per run?

LinkedIn exposes a bounded similar-companies panel per company — typically 10 to 20 entries. Extract LinkedIn Similar Companies returns the full panel up to your optional limit. For broader discovery, run the action across multiple seed companies and dedupe.

Does Extract LinkedIn Similar Companies use my LinkedIn account or a shared pool?

Your account. The similar panel respects LinkedIn's visibility rules for the session making the request, and Edges routes every call through the connected account you control.

Can I chain Extract LinkedIn Similar Companies with other Edges actions?

Yes. A common chain is Extract LinkedIn Similar Companies → [Extract LinkedIn Company Profile](/actions/linkedin-extract-company) → [Search LinkedIn Company Employees](/actions/linkedin-search-company-employees) → CRM. The output is a plain array of company records that any company-level action can consume.

Get started

Run Extract LinkedIn Similar Companies against your top accounts from the Edges dashboard, or wire it into an ABM pipeline through the Edges API. Browse the full Actions library to compose discovery with enrichment and outreach.

Code Examples

bash
curl -X POST "https://api.edges.run/v1/actions/linkedin-extract-similar-companies/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
  }
}'

Output Example

[
  {
    "industry": "example_value",
    "followers_count": "example_value",
    "linkedin_company_id": "example-123",
    "company_name": "Example Name",
    "linkedin_company_url": "https://www.linkedin.com/in/example-profile"
  }
]

Explore More Actions

Discover other powerful LinkedIn automation actions in our library.