VOOZH about

URL: https://apify.com/yonecode/linkedin-company-enricher

โ‡ฑ LinkedIn Company Finder & Enricher โ€” Domain โ†’ Profile ยท Apify


๐Ÿ‘ LinkedIn Company Finder & Enricher โ€” Domain โ†’ Profile avatar

LinkedIn Company Finder & Enricher โ€” Domain โ†’ Profile

Under maintenance

Pricing

from $2.00 / 1,000 fast result.s

Go to Apify Store

LinkedIn Company Finder & Enricher โ€” Domain โ†’ Profile

Under maintenance

Domain โ†’ LinkedIn URL + full company profile (industry, size, HQ, contacts, socials). From $2/1K results. No cookie for Fast Mode. Pay per result.

Pricing

from $2.00 / 1,000 fast result.s

Rating

5.0

(5)

Developer

๐Ÿ‘ Yone

Yone

Maintained by Community

Actor stats

9

Bookmarked

85

Total users

19

Monthly active users

25 days ago

Last modified

Share

LinkedIn Company Finder & Enricher ๐Ÿ”

Domains in. Full LinkedIn company profiles out. Built for sales prospecting, CRM enrichment, lead generation, and supplier discovery โ€” at any scale.

๐Ÿ‘ Apify Actor
๐Ÿ‘ Pricing
๐Ÿ‘ GitHub

Turn any list of company domains into rich LinkedIn company data โ€” name, industry, size, headquarters, followers, contacts, and social URLs โ€” all in one click. No setup, no scraping infrastructure, no manual searches.


โœจ Why use it

  • Two modes, one Actor. Free LinkedIn URL discovery, or paste your LinkedIn cookie for full profiles.
  • Pay only for hits. Domains with no LinkedIn page are saved to a separate misses dataset and never billed.
  • Bulk-friendly. Paste a domain list, or upload a CSV with a domain / website column.
  • Country-aware. Optional country filter prioritises the right regional LinkedIn page (US, UK, Germany, France, โ€ฆ).
  • E-commerce supplier flag. Automatically tags wholesalers, manufacturers, and distributors plus their product categories.
  • Predictable output. Every result follows the same fixed schema โ€” no missing keys, no surprise fields.

๐ŸŽฏ Two modes

Fast ModeDeep Mode
LinkedIn cookie requiredโŒ Noโœ… Yes
Time per domain~1โ€“3 s~3โ€“8 s
Fields returned4 (URL, country, confidence, domain)20+ (full profile)
Best forDomain โ†’ LinkedIn URL matching at scaleFull enrichment for sales / CRM / outreach
Per result$0.002  |  $0.0035 with socials$0.006  |  $0.008 with socials

๐Ÿš€ How to use it

On the Apify Console

  1. Open the Actor and paste your domains in the Domain Names field โ€” one per row.
  2. Leave LinkedIn Cookies empty for Fast Mode, or paste your li_at value for Deep Mode.
  3. Click Run. Results stream into the dataset as each domain finishes โ€” export to JSON, CSV, Excel, or HTML.

Via the Apify API โ€” Python

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": "AQEDA...", # uncomment for Deep Mode
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["domain"],"โ†’", item["linkedin_url"])

Via the Apify API โ€” Node.js

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const run =await client.actor('yonecode/linkedin-company-enricher').call({
domains:['tesla.com','airbnb.com','zoom.us'],
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Via cURL

curl-X POST "https://api.apify.com/v2/acts/yonecode~linkedin-company-enricher/run-sync-get-dataset-items?token=YOUR_API_TOKEN"\
-H"Content-Type: application/json"\
-d'{"domains": ["tesla.com", "airbnb.com"]}'

๐Ÿ“ฅ Input

FieldTypeDefaultWhat it does
domainsarray of stringsโ€”Domain names, one per row (e.g. tesla.com). Optional if you supply csv_file_url.
csv_file_urlstring (URL)""URL of a CSV with a domain or website column. Use this for bulk uploads of 1,000+ rows.
include_company_detailsbooleantrueExtract industry, size, HQ, type, specialties, description, followers, website. Deep Mode only.
include_contact_infobooleantrueBest-effort email and phone extraction from the company website. Deep Mode only.
extract_socialsbooleanfalseFind Facebook, Instagram, and X/Twitter URLs. Adds 3 extra searches per domain โ€” leave off if you don't need socials.
country_filterarray of strings[]ISO country codes to prioritise (e.g. ["US", "DE", "NL"]). Empty = automatic.
max_concurrentinteger5Parallel domains (1โ€“10). Higher is faster, but higher values raise auth-wall risk in Deep Mode.
proxy_configurationobjectApify RESIDENTIALProxy settings for Deep Mode. Datacenter proxies are not supported โ€” LinkedIn blocks them on sight.
linkedin_cookiesstring (secret)""Your LinkedIn li_at cookie (or full Cookie header / JSON cookie array). Empty = Fast Mode.

๐Ÿ“ค Output

Fast Mode โ€” sample item

{
"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 item

{
"domain":"airbnb.com",
"linkedin_url":"https://www.linkedin.com/company/airbnb",
"linkedin_country":"us",
"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...",
"website":"https://airbnb.com",
"follower_count":3252959,
"email":null,
"phone":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
}

All output fields

FieldTypeFastDeepNotes
domainstringโœ…โœ…Input domain, normalised.
linkedin_urlstringโœ…โœ…LinkedIn company page URL.
linkedin_countrystringโœ…โœ…Country code parsed from the LinkedIn subdomain (lowercase ISO).
match_confidencefloat (0โ€“1)โœ…โœ…How sure we are the URL matches the domain.
company_namestringโ€”โœ…
industrystringโ€”โœ…
company_sizestringโ€”โœ…e.g. "5001-10000 employees".
headquartersstringโ€”โœ…City, State, Country.
company_typestringโ€”โœ…Public, Private, Non-profit, etc.
specialtiesstringโ€”โœ…Comma-separated.
descriptionstringโ€”โœ…About text from the LinkedIn company page.
websitestringโ€”โœ…Outbound website link.
follower_countintegerโ€”โœ…
emailstringโ€”โœ…Best-effort, when published on the company website.
phonestringโ€”โœ…Best-effort, when published on the company website.
facebook_urlstringโ€”opt-inSet extract_socials: true.
instagram_urlstringโ€”opt-inSet extract_socials: true.
twitter_urlstringโ€”opt-inSet extract_socials: true.
is_ecommerce_supplierbooleanโ€”โœ…Auto-detected from industry + specialties.
product_categorieslist of stringsโ€”โœ…null when not a supplier.
errorstringโœ…โœ…null on success.

Where misses go

Domains with no LinkedIn page (or that hit LinkedIn's login wall in Deep Mode) are saved to a separate dataset called misses โ€” not the default dataset. This keeps your billable count honest: you only pay for rows that actually carry a LinkedIn URL.

To inspect misses, open the run page โ†’ Storage tab โ†’ select the misses dataset.


๐Ÿ’ฐ Pricing โ€” pay per result

You pay only when a result is delivered. Domains with no LinkedIn page, login-walled pages, and any failed lookups are routed to the misses dataset and never billed.

EventWhat you getPrice per result
fast-resultFast Mode row with a valid LinkedIn URL.$0.002
fast-socials-resultFast Mode row + Facebook / Instagram / X URLs.$0.0035
deep-resultFull company profile (name, industry, size, HQ, specialties, description, followers, website, email, phone, supplier flag).$0.006
deep-socials-resultDeep result + Facebook / Instagram / X URLs.$0.008

What you DON'T pay for

  • โŒ Domains with no LinkedIn page โ€” saved to misses.
  • โŒ Pages blocked by LinkedIn's login wall โ€” saved to misses.
  • โŒ Failed lookups โ€” saved to misses with an error field explaining what happened.

๐Ÿ’ก Fresh cookies and larger batches give the highest success rate.


๐ŸŽฏ Who it's for

Sales teams

Match prospect domains from your CRM to LinkedIn company pages. Enrich each row with size, industry, HQ, follower count, and contact info before sending outreach.

Recruiters & talent ops

Build company shortlists from a domain list. Filter by company size, industry, and location with one query โ€” no manual LinkedIn searches.

Data teams & analysts

Bulk-enrich domains for market analysis, lead scoring, supplier discovery, or competitor mapping. Stream output straight to your warehouse via Apify's API.

E-commerce sourcing

Use the built-in is_ecommerce_supplier flag and product_categories field to surface manufacturers, wholesalers, and distributors from a list of vendor domains.


โš–๏ธ How this compares

Specs and prices below are the publicly listed values on each provider's Apify Store page at the time of writing โ€” verify on each page before purchase.

ToolPer resultCookie requiredFields
This Actor (Fast Mode)$0.002No4 (URL, country, confidence, error)
This Actor (Deep Mode)$0.006Yes (your li_at)~20 (full profile + supplier flag + contacts)
harvestapi/linkedin-company~$4 / 1k resultsNo~12
anchor/linkedin-company-url-finderURL-only tierNo1 (URL)

Pricing changes โ€” always check the current price on each provider's page before running.


๐Ÿ” Deep Mode setup โ€” getting your li_at cookie

Deep Mode requires a valid LinkedIn session cookie:

  1. Log into LinkedIn in your browser.
  2. Open DevTools (F12) โ†’ Application tab โ†’ Cookies โ†’ https://www.linkedin.com.
  3. Find the cookie named li_at and copy its Value.
  4. Paste the value into the Actor's LinkedIn Cookies field.

The Actor accepts three cookie formats:

  • Bare value: AQEDAT...
  • Cookie header: li_at=AQE...; JSESSIONID=...
  • JSON array exported by extensions like EditThisCookie.

Privacy. Your cookie is used only during the run and is never stored or logged by the Actor. We strongly recommend creating a dedicated LinkedIn account for scraping to avoid risk to your primary profile.


โ“ FAQ


โš ๏ธ Limits

  • Login wall. A small percentage of LinkedIn pages refuse anonymous browsing. In Deep Mode these are detected and saved to misses (no charge).
  • Email / phone recall. Best-effort scan of the company website. Companies that hide contact info behind forms or CAPTCHAs will return null.
  • Concurrency cap. Deep Mode is capped at 10 parallel domains (default 5). Higher concurrency means more login-wall rejections.
  • Non-Latin domains. Currently limited to standard ASCII domain names.

๐Ÿ“„ Terms of use

ยฉ 2026 Yonecode. Run the Actor as a service through the Apify platform under the standard Apify Store Terms of Service. Source code is proprietary and not redistributed.


๐Ÿ“ง Contact & support


You might also like

Linkedin company url finder

unlimitedleadtestinbox/linkedin-company-url-finder

Linkedin company url finder : find company linkedin url from company name

Domain name or website url to Linkedin Company page url

sbzh/domain-name-or-website-url-to-linkedin-company-page-url

Use this tool to retrieve the LinkedIn URL of the company page on the website of the company you are searching for. Simply enter the domain name or URL of the company's website and retrieve the LinkedIn URL of the company page in the format https://www.linkedin.com/company/...

Domain to LinkedIn URL Resolver Clay-Ready Company URL

mambalabs/domain-to-linkedin-url-resolver

Resolves a company domain to its LinkedIn company URL via pattern matching and web search. Fixes the 15-20% miss rate in Clay native enrichment. Flat output with LinkedIn URL, employee count, industry, social URLs, and confidence score. MCP-ready for Claude Desktop and AI agents.

232

4.0

Free Linkedin Company Finder - LinkedIn address From Any Site

s-r/free-linkedin-company-finder---linkedin-address-from-any-site

Find LinkedIn company pages for any domain name. This powerful actor searches and extracts LinkedIn company URLs for domains, supporting international LinkedIn subdomains and bulk processing. Perfect for sales teams, recruiters, and data enrichment.

Find Linkedin Company Page Urls

sbzh/domain-names-or-website-urls-to-linkedin-company-page-urls

Use this tool to retrieve the LinkedIn URLs from websites. Simply enter a list of domain names or website URLs and, when available, retrieve the LinkedIn URL of the company page in the format https://www.linkedin.com/company/...

LinkedIn Company Employees Scraper [Optional Cookies, No Login]

memo23/linkedin-company-people-scraper

The Actor is designed to extract information from LinkedIn company pages, capturing details that include the names of individuals, their positions, usernames, profile images, the URLs of their LinkedIn profile pages, and the names of their associated companies

๐Ÿ‘ User avatar

Muhamed Didovic

1.2K

4.7

LinkedIn Company Scraper

scrapier/linkedin-company-scraper-actor

Scrape LinkedIn company data with the LinkedIn Company Scraper. Extract company names, industries, employee counts, locations, and descriptions. Ideal for market research, lead generation, and competitor analysis. Fast, accurate, and scalable for single or bulk company profiles.

LinkedIn Employees Scraper โ€” B2B Prospect Builder (No Login)

thirdwatch/linkedin-company-employees-scraper

Build B2B prospect lists from any company on LinkedIn. Two modes: Basic (name, headline, URL) or Full (work history, education, skills, certifications, languages, location). Filter by job title and location. No login or cookies required. Works inside Claude, ChatGPT, and any MCP-compatible agent.

353

5.0

Company Employees Scraper for LinkedIn | No Cookies

apimaestro/linkedin-company-employees-scraper-no-cookies

Extract LinkedIn company employees without sharing your cookies or account. Get structured data including profile details, job titles, and current positions. No login required.

4.8K

3.8

Linkedin Company Search

clothefobia/linkedin-company-search

Linkedin Company Search : search all companies on linkedin

18