LinkedIn Company Details Scraper — Under Maintenance avatar

LinkedIn Company Details Scraper — Under Maintenance

Pricing

$0.60 / 1,000 results

Go to Apify Store
LinkedIn Company Details Scraper — Under Maintenance

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

Danny

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

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

ParameterTypeRequiredDescription
companiesarrayYesCompany 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

FieldDescription
slugLinkedIn company slug
company_nameCompany name
website_domainDecoded outbound website domain (LinkedIn wraps the link; we unwrap it)
industryIndustry
company_sizeSize band, e.g. 51-200 employees
employee_countNumeric employee count
headquartersHQ location
foundedYear founded
followersFollower count
company_urlLinkedIn company URL

Pagination

Handled server-side — one run returns the full result set for your input list.

Python Client

from apify_client import ApifyClient
client = 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.