Free LinkedIn Company Finder - Company URLs & Full Profile Data avatar

Free LinkedIn Company Finder - Company URLs & Full Profile Data

Pricing

from $2.50 / 1,000 results

Go to Apify Store
Free LinkedIn Company Finder - Company URLs & Full Profile Data

Free LinkedIn Company Finder - Company URLs & Full Profile Data

Find LinkedIn company pages from any domain list. Get URLs + full profiles (industry, size, HQ, followers, email, phone, socials, e-commerce supplier flag). $2.50/1K results. No LinkedIn account needed for Fast Mode. Apollo, Clearbit & Proxycurl alternative.

Pricing

from $2.50 / 1,000 results

Rating

5.0

(1)

Developer

Yone

Yone

Maintained by Community

Actor stats

3

Bookmarked

18

Total users

10

Monthly active users

4 days ago

Last modified

Share

LinkedIn Company Finder & Enricher πŸ”

Find LinkedIn company pages and extract full company profiles from any domain list β€” industry, size, headquarters, followers, contacts, and social URLs in a single run.


What it does

Takes a list of domain names and returns the matching LinkedIn company page for each one. No LinkedIn account needed for basic URL discovery. Provide a LinkedIn cookie to unlock the full company profile.


Two modes

Fast Mode β€” no account needed

Searches for the LinkedIn company URL and returns it with a match confidence score. No browser is launched, no proxy is used. Typically under 5 seconds per domain.

Returns: domain, linkedin_url, linkedin_country, match_confidence.

Deep Mode β€” full company profile

Requires a LinkedIn li_at session cookie. Launches an authenticated browser session over a residential proxy and extracts up to 21 fields per domain: name, industry, size, headquarters, type, specialties, description, website, follower count, email, phone, Facebook, Instagram, Twitter, e-commerce supplier flag, and product categories.


How to use

On Apify

  1. Open the actor and add your domains to the Domain Names field (one per row).
  2. Leave LinkedIn Cookies empty for Fast Mode, or paste your li_at cookie value to enable Deep Mode.
  3. Click Run. Results appear in the output dataset as each domain finishes. Export as JSON, CSV, or Excel.

Via API

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("yonecode/linkedin-company-enricher").call(run_input={
"domains": ["tesla.com", "airbnb.com", "zoom.us"],
"linkedin_cookies": "" # leave empty for Fast Mode
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["domain"], "β†’", item["linkedin_url"])

Output

Fast Mode sample

{
"domain": "airbnb.com",
"linkedin_url": "https://www.linkedin.com/company/airbnb",
"linkedin_country": "us",
"match_confidence": 0.99,
"company_name": null,
"industry": null,
"company_size": null,
"headquarters": null,
"company_type": null,
"specialties": null,
"description": null,
"website": null,
"follower_count": null,
"email": null,
"phone": null,
"facebook_url": null,
"instagram_url": null,
"twitter_url": null,
"is_ecommerce_supplier": null,
"product_categories": null,
"error": null
}

Deep Mode sample

{
"domain": "airbnb.com",
"linkedin_url": "https://eg.linkedin.com/company/airbnb",
"linkedin_country": "eg",
"match_confidence": 0.99,
"company_name": "Airbnb",
"industry": "Software Development",
"company_size": "5001-10000 employees",
"headquarters": "San Francisco, CA, US",
"company_type": "Public Company",
"specialties": "travel accommodations, collaborative economy, hospitality",
"description": "Airbnb was born in 2007 when two hosts welcomed three guests to their San Francisco home, and has since grown to over 5 million hosts who have welcomed over 2 billion guest arrivals in almost every country across the globe.",
"website": "http://airbnb.com",
"follower_count": 3252959,
"email": null,
"facebook_url": "https://www.facebook.com/airbnb/",
"instagram_url": "https://www.instagram.com/airbnb/",
"twitter_url": "https://twitter.com/Airbnb",
"is_ecommerce_supplier": false,
"product_categories": null,
"error": null
}

Domains with no LinkedIn page return "error": "No LinkedIn page found for this domain" and are not charged.


Pricing

Pay As You Go

βœ… $2.50 per 1,000 successful lookups ❌ $0 for domains without LinkedIn pages 🎁 Free trial: first 100 results free

No subscription. No minimum. You only pay for results that return a LinkedIn URL.


Requirements for Deep Mode

Deep Mode requires a valid LinkedIn session cookie. To get it:

  1. Log into LinkedIn in your browser.
  2. Open DevTools β†’ Application β†’ Cookies β†’ linkedin.com.
  3. Copy the value of the li_at cookie and paste it into the LinkedIn Cookies input field.

Deep Mode uses Apify's residential proxy pool automatically. Datacenter IPs are blocked by LinkedIn and are not supported.

Your cookie is used only during the run and is never stored or logged.


Output fields

FieldFast ModeDeep ModeNotes
domainβœ…βœ…Input domain, normalized
linkedin_urlβœ…βœ…LinkedIn company page URL
linkedin_countryβœ…βœ…LinkedIn subdomain country code
match_confidenceβœ…βœ…0.0–1.0 match score
company_nameβŒβœ…
industryβŒβœ…
company_sizeβŒβœ…e.g. "5001-10000 employees"
headquartersβŒβœ…City, State, Country
company_typeβŒβœ…Public, Private, etc.
specialtiesβŒβœ…
descriptionβŒβœ…
websiteβŒβœ…
follower_countβŒβœ…Integer
emailβŒβœ…When available on the page
phoneβŒβœ…When available on the page
facebook_urlβŒβœ…
instagram_urlβŒβœ…
twitter_urlβŒβœ…
is_ecommerce_supplierβŒβœ…Boolean
product_categoriesβŒβœ…List of strings, or null
errorβœ…βœ…Null on success