Free LinkedIn Company Finder - Company URLs & Full Profile Data
Pricing
from $2.50 / 1,000 results
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
Actor stats
3
Bookmarked
18
Total users
10
Monthly active users
4 days ago
Last modified
Categories
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
- Open the actor and add your domains to the Domain Names field (one per row).
- Leave LinkedIn Cookies empty for Fast Mode, or paste your
li_atcookie value to enable Deep Mode. - Click Run. Results appear in the output dataset as each domain finishes. Export as JSON, CSV, or Excel.
Via API
from apify_client import ApifyClientclient = 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:
- Log into LinkedIn in your browser.
- Open DevTools β Application β Cookies β
linkedin.com. - Copy the value of the
li_atcookie 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
| Field | Fast Mode | Deep Mode | Notes |
|---|---|---|---|
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 |