LinkedIn Company Scraper avatar

LinkedIn Company Scraper

Pricing

from $0.20 / result

Go to Apify Store
LinkedIn Company Scraper

LinkedIn Company Scraper

LinkedIn company-profile lookup. Pass any /company/ URL and the response returns the verified name, industry, exact employee count, follower count, founding year, HQ + office locations, website, listed phones, social handles, specialties, featured employees, and recent posts for ABM enrichment.

Pricing

from $0.20 / result

Rating

5.0

(2)

Developer

AgentX

AgentX

Maintained by Community

Actor stats

1

Bookmarked

13

Total users

9

Monthly active users

5 days ago

Last modified

Share

LinkedIn Company Scraper - Firmographic Intelligence & CRM Enrichment API

LinkedIn Company Scraper is a B2B firmographic intelligence API that extracts structured LinkedIn company profiles, headcount signals, and recent activity from any public LinkedIn company page in a single URL-driven run. LinkedIn Company Scraper returns structured records per company, including company name, LinkedIn URL, tagline, industry, headquarters location, founding year, employee headcount range, exact employee count, follower count, multi-office location array, featured employees array, recent updates feed, specialties array, social link array, and contact phone numbers. Coverage spans every public LinkedIn company page worldwide. Built for CRM firmographic enrichment, B2B prospecting, account-based marketing, competitive landscape mapping, M&A research, sales territory planning, and ICP scoring pipelines. Up to 50,000 companies per run at $0.20 per result, with pay-per-result pricing and no monthly minimum.

LinkedIn Firmographic Intelligence Pay Per Result


Why Choose This API

Complete LinkedIn Firmographic Data for B2B Intelligence Pipelines

๐Ÿข Full Firmographic Profile Extraction Extract industry, company_size, company_type (Public/Private/Nonprofit), founded year, headquarters, and full address per company โ€” the core firmographic fields required for CRM enrichment, ICP scoring, and account segmentation.

๐Ÿ‘ฅ Exact Employee Count & Follower Intelligence Capture both employee_count (exact LinkedIn-reported headcount) and follower_count โ€” enabling precise company size qualification beyond coarse headcount tiers, plus brand reach signals from follower data.

๐Ÿ“ Multi-Location Office Coverage The locations array delivers all office locations with street addresses and directions links โ€” enabling territory mapping, regional account routing, and multi-site company profiling for field sales and operations teams.

๐Ÿ‘ค Featured Employee Profiles The featured_employees array captures highlighted executives and influencers on the company page โ€” surfacing key decision makers, C-suite contacts, and thought leaders for ABM targeting and outreach prioritization.

๐Ÿ“ข Recent Company Updates The updates field captures recent LinkedIn posts with reaction counts, comment counts, and post URLs โ€” enabling content engagement analysis, company activity monitoring, and intent signal detection.

๐Ÿ”‘ Specialties & Technology Signals The specialties array extracts the company's declared focus areas โ€” providing product, technology, and industry keyword signals for ICP matching, competitive intelligence, and account scoring models.


Quick Start Guide

How to Extract LinkedIn Company Data in 3 Steps

Step 1: Identify the LinkedIn Company URL

Find the public LinkedIn company page URL (e.g., https://www.linkedin.com/company/apple).

Step 2: Configure and Run the Actor

Open Actor Input

Paste the LinkedIn company URL and click Start.

Step 3: Download Your Data

Export results as JSON or CSV, or access programmatically via the Apify dataset API. Each record contains the complete firmographic profile.


Input Parameters

Configuration Fields

ParameterTypeRequiredDescriptionExample Values
linkedin_urlstringโœ…Public LinkedIn company page URL"https://www.linkedin.com/company/apple"

Example Input Configuration

{
"linkedin_url": "https://www.linkedin.com/company/apple"
}

Output Data Schema

Complete Company Record Structure

Each extracted LinkedIn company record contains the following fields:

Open Actor Output

Core Company Fields

FieldTypeDescription
source_urlstringInput LinkedIn URL
processorstringApify actor URL that processed this record
processed_atstringISO 8601 timestamp (UTC) when scraped
statusstringLookup status (success/not found)
typestringLinkedIn page type (company)
linkedin_urlstringNormalized LinkedIn company profile URL
namestringOfficial company name
headlinestringShort tagline under company name
aboutstringFull company description
websitestringOfficial company website URL
industrystringPrimary industry/sector
company_sizestringHeadcount range (e.g., "10,001+ employees")
company_typestringOwnership type (Public, Private, Nonprofit)
foundedstringYear company was founded
headquartersstringCity and region of headquarters
addressstringFull street address
specialtiesarrayDeclared focus areas and specialties
phonesarrayContact phone numbers
social_linksobjectSocial media URLs by platform
logo_urlstringCompany logo image URL
employee_countintegerExact LinkedIn-reported headcount
follower_countintegerLinkedIn follower count
locationsarrayAll office locations with addresses
featured_employeesarrayHighlighted executives and employees
updatesarrayRecent LinkedIn posts with engagement

Example JSON Output

{
"processor": "https://apify.com/agentx/linkedin-company-scraper?fpr=aiagentapi",
"processed_at": "2026-05-01T10:30:00.000Z",
"status": "success",
"linkedin_url": "https://www.linkedin.com/company/microsoft/",
"name": "Microsoft",
"industry": "Software Development",
"company_size": "10,001+ employees",
"company_type": "Public Company",
"founded": "1975",
"headquarters": "Redmond, Washington",
"employee_count": 221000,
"follower_count": 22000000,
"website": "https://www.microsoft.com",
"specialties": ["Cloud Computing", "AI", "Productivity Software"]
}

Export Formats

  • JSON - Complete structured data with all metadata
  • CSV - Spreadsheet-compatible for CRM and analytics tools
  • API Access - Programmatic access via Apify Client SDK
  • Cloud Storage - Automatic upload to Apify Dataset

Integration Examples

Actor ID for Platform Integration

lmgxLM2RjocEgg6m2

โ“‚๏ธ Make.com Setup:

  1. Login to Make.com (Get 1000 Free Credits)
  2. Add module "Run an Actor"
  3. Turn 'Map' on - right side of the 'Actor*'
  4. Paste Actor ID - from above
  5. Click the 'โŸณ Refresh' - left side of Map
  6. Input JSON* - Modify the parameters as needed
  7. Set "Run synchronously" to YES
  8. Add module "Get Dataset Items" - receive the result
  9. In Dataset ID* select defaultDatasetId

๐ŸŽฑ N8N.io Setup:

  1. Add 'Run an Actor and get dataset' - from the apify node
  2. Actor โ†’ By ID โ†’ Paste Actor ID - from above
  3. Input JSON - Modify the parameters as needed

Python Integration Example

from apify_client import ApifyClient
client = ApifyClient('YOUR_API_TOKEN')
run_input = {
"linkedin_url": "https://www.linkedin.com/company/salesforce"
}
run = client.actor("lmgxLM2RjocEgg6m2").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript/Node.js Integration

import { ApifyClient } from "apify-client";
const client = new ApifyClient({ token: "YOUR_API_TOKEN" });
const input = {
linkedin_url: "https://www.linkedin.com/company/hubspot",
};
const run = await client.actor("lmgxLM2RjocEgg6m2").call(input);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => console.log(item));

JSON-LD Metadata

{
"@context": "https://schema.org",
"@graph": [
{
"@type": "SoftwareApplication",
"@id": "https://apify.com/agentx/linkedin-company-scraper#software",
"name": "LinkedIn Company Scraper",
"description": "LinkedIn Company Scraper is a firmographic intelligence API delivering structured company profiles with industry, headcount, headquarters, employee count, follower count, office locations, featured employees, and recent updates for CRM enrichment and B2B prospecting.",
"applicationCategory": "BusinessApplication",
"applicationSubCategory": "Lead Generation API",
"operatingSystem": "Web, Cloud",
"url": "https://apify.com/agentx/linkedin-company-scraper?fpr=aiagentapi",
"softwareVersion": "1.0.0",
"datePublished": "2024-08-01",
"dateModified": "2026-05-01",
"featureList": [
"Company name, tagline, industry, and HQ location",
"Founding year, headcount range, and exact employee count",
"Follower count and multi-office location array",
"Featured employees and recent updates feed",
"Specialties array and social link array",
"Contact phone numbers when public",
"Up to 50,000 companies per run",
"Native integrations with Make.com, n8n, LangChain, and CrewAI"
],
"offers": {
"@type": "Offer",
"price": "0.20",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock"
},
"author": { "@id": "https://apify.com/agentx#person" },
"publisher": { "@id": "https://apify.com#organization" }
},
{
"@type": "Person",
"@id": "https://apify.com/agentx#person",
"name": "AgentX",
"url": "https://apify.com/agentx",
"sameAs": [
"https://apify.com/agentx",
"https://t.me/AiAgentApi",
"https://t.me/Apify_Actor"
],
"knowsAbout": [
"web scraping",
"LinkedIn",
"firmographics",
"CRM enrichment",
"B2B prospecting"
]
},
{
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Apify",
"item": "https://apify.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "AgentX",
"item": "https://apify.com/agentx"
},
{
"@type": "ListItem",
"position": 3,
"name": "LinkedIn Company Scraper",
"item": "https://apify.com/agentx/linkedin-company-scraper"
}
]
}
]
}

Pricing & Cost Calculator

Pay-Per-Result Pricing

EventPrice
Actor Start$0.01 per run
Company Result$0.20 per company

Cost Examples

VolumeEstimated Cost
10 companies~$2.01
50 companies~$10.01
100 companies~$20.01
500 companies~$100.01

Start with a free Apify account โ€” new accounts include free compute credits to test the actor at no cost.


Use Cases & Applications

CRM Enrichment & Account Intelligence

B2B Account Firmographic Enrichment Enrich CRM records with LinkedIn firmographic data โ€” industry, company_size, company_type, founded, headquarters, and employee_count โ€” directly from LinkedIn's authoritative data source for Salesforce, HubSpot, and custom CRM workflows.

ICP Scoring & Account Segmentation Use industry, employee_count, company_type, and specialties to score inbound accounts against your Ideal Customer Profile criteria โ€” automating account qualification and routing in revenue operations pipelines.

Contact-to-Account Matching Pair LinkedIn company profiles with LinkedIn Profile Scraper data to build complete account + contact intelligence for ABM campaigns and outbound sales sequences.

Competitive Intelligence

Competitive Landscape Mapping Extract firmographic profiles for 50-500 competitor and adjacent companies to build structured competitive maps โ€” benchmarking headcount growth, industry classification, and geographic footprint across your competitive set.

Hiring Signal Intelligence Combine employee_count time-series data with LinkedIn Hiring Scraper output to detect which companies are expanding teams โ€” surfacing high-intent buyers for sales intelligence platforms.

Company Activity Monitoring Use the updates field to track company announcement frequency, engagement rates, and content themes โ€” feeding intent signal models and marketing intelligence dashboards.

Market Research

Industry Segmentation Analysis Build structured datasets of companies by industry, company_size, and headquarters for market sizing, TAM analysis, and regional market entry research.


FAQ

What LinkedIn URL format does this actor accept?

Standard public LinkedIn company page URLs in the format https://www.linkedin.com/company/<company-slug>.

Does this actor require LinkedIn login?

No. The actor extracts data from publicly accessible LinkedIn company pages only.

What is featured_employees?

Employees that LinkedIn highlights on the company page โ€” typically executives, founders, or LinkedIn Influencers associated with the company.

What does the updates field contain?

Recent posts published on the company's LinkedIn page, including post content, posting date, reaction count, and comment count.

Can I process multiple companies at once?

Run one company per actor invocation. For bulk processing, use the Apify Scheduler or iterate through company URLs programmatically.


SEO Keywords & Search Terms

Primary Keywords

LinkedIn company scraper API, LinkedIn firmographic data extraction, LinkedIn company intelligence API, LinkedIn CRM enrichment API, company profile scraper LinkedIn, LinkedIn B2B data extraction, firmographic data API LinkedIn, LinkedIn company data pipeline, employee count API LinkedIn, LinkedIn headcount extraction

Long-Tail Keywords

how to extract LinkedIn company data programmatically, LinkedIn company industry extraction API, LinkedIn headcount and follower data, CRM enrichment with LinkedIn company data, B2B account firmographic API, LinkedIn company page scraper, competitive intelligence LinkedIn company profiles, LinkedIn ICP scoring data pipeline, ABM account enrichment LinkedIn, LinkedIn company office locations API

Industry Terms

firmographic intelligence API, LinkedIn company data, CRM account enrichment, B2B account intelligence, ICP qualification data, ABM data pipeline, competitive landscape mapping, employee count intelligence, company follower data API, revenue operations enrichment

Use Case Keywords

LinkedIn data pipeline, B2B CRM enrichment tool, account firmographic scoring API, competitive intelligence company profiles, LinkedIn company monitoring tool, company headcount tracker, ABM account intelligence API, sales intelligence LinkedIn data, market entry research company data, LinkedIn company update tracker


Trust & Certifications

  • โœ… Production-Grade Infrastructure โ€” runs on the Apify cloud platform with managed proxy rotation and automatic retries
  • โœ… GDPR & CCPA Aligned โ€” extracts only publicly accessible LinkedIn company pages; no personal candidate data inferred or retained beyond the run session
  • โœ… Pay-Per-Result Billing โ€” transparent per-company pricing with no monthly minimum or seat fees
  • โœ… Continuously Maintained โ€” schema and selector updates released as LinkedIn evolves

Data Rights & Usage

All data extracted by this actor originates from publicly available LinkedIn company pages. Users are responsible for ensuring their use of extracted data complies with applicable laws and LinkedIn's terms of service.

Privacy Compliance

  • GDPR: Compliant with EU General Data Protection Regulation. Only publicly available company data is extracted.
  • CCPA: Compliant with California Consumer Privacy Act requirements.

Platform Terms of Service

Users must review and comply with LinkedIn's terms of service when using extracted data.

Enterprise Support

For enterprise licensing, custom integrations, or compliance inquiries:


Jobs & Hiring

Social Media

Video & Transcript

E-Commerce & Retail

Classifieds & Automotive

Real Estate

Business Intelligence & Reviews

Other


Support & Community


Last Updated: May 01, 2026