LinkedIn Company Details Scraper — Under Maintenance
Pricing
$0.60 / 1,000 results
LinkedIn Company Details Scraper — Under Maintenance
Company profile from a slug/URL: decoded website domain, industry, size, HQ, followers. No login. $0.60/1k.
Pricing
$0.60 / 1,000 results
Rating
0.0
(0)
Developer
Danny
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
LinkedIn Company Details Scraper
Fetch a LinkedIn company's profile (firmographics) from its slug or /company/
Public, logged-out data only — no login, no cookies, no account.
Input
| Parameter | Type | Required | Description |
|---|---|---|---|
companies | array | Yes | Company slugs or /company/ |
Example Input
{"companies": ["stripe","https://www.linkedin.com/company/11x-ai/"]}
Output
Each dataset item:
{"slug": "...","company_name": "example","website_domain": "...","industry": "...","company_size": "...","employee_count": "...","headquarters": "...","founded": "...","followers": "...","company_url": "..."}
Fields
| Field | Description |
|---|---|
slug | LinkedIn company slug |
company_name | Company name |
website_domain | Decoded outbound website domain (LinkedIn wraps the link; we unwrap it) |
industry | Industry |
company_size | Size band, e.g. 51-200 employees |
employee_count | Numeric employee count |
headquarters | HQ location |
founded | Year founded |
followers | Follower count |
company_url | LinkedIn company URL |
Pagination
Handled server-side — one run returns the full result set for your input list.
Python Client
from apify_client import ApifyClientclient = ApifyClient("YOUR_TOKEN")run = client.actor("good-apis/linkedin-company-details-scraper").call(run_input={"companies": ["stripe","https://www.linkedin.com/company/11x-ai/"]})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)
Node.js Client
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('good-apis/linkedin-company-details-scraper').call({"companies": ["stripe","https://www.linkedin.com/company/11x-ai/"]});const { items } = await client.dataset(run.defaultDatasetId).listItems();for (const item of items) console.log(item);
Install the client with npm install apify-client.
FAQ
What input? A list of company slugs (e.g. stripe) or /company/<slug> URLs in companies.
What's website_domain? LinkedIn wraps outbound company links in a /redir/redirect?url=… tracker; we decode it to the real domain (e.g. stripe.com).
One billed result? One company profile = one result at $0.60 / 1,000.