Linkedin Company About Scraper avatar
Linkedin Company About Scraper

Pricing

$10.00/month + usage

Go to Store
Linkedin Company About Scraper

Linkedin Company About Scraper

Developed by

Marco Rodrigues

Marco Rodrigues

Maintained by Community

This tool scrapes detailed company information from LinkedIn "About" pages. Supports multiple companies per run, auto-translation of non-English pages, and structured JSON output. Input is a list of companies.

5.0 (1)

Pricing

$10.00/month + usage

1

Total users

51

Monthly users

49

Runs succeeded

>99%

Last modified

16 days ago

You can access the Linkedin Company About Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6 token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11 "companies": [
12 "Impossible Foods",
13 "Beyond Meat",
14 "Oatly",
15 "Ripple Foods",
16 "Allbirds",
17 "Warby Parker",
18 "Glossier",
19 "Casper",
20 "Peloton",
21 "Calm",
22 "Duolingo",
23 "Coursera",
24 "Udacity",
25 "Robinhood",
26 "Chime",
27 "Plaid",
28 "Stripe",
29 "Affirm",
30 "Klarna",
31 "Notion",
32 "Airtable",
33 "Asana",
34 "Monday.com",
35 "Discord",
36 "Canva",
37 "Figma",
38 "Webflow",
39 "GitLab",
40 "HashiCorp",
41 "Databricks"
42 ]
43};
44
45// Run the Actor and wait for it to finish
46const run = await client.actor("dadhalfdev/linkedin-company-about-scraper").call(input);
47
48// Fetch and print Actor results from the run's dataset (if any)
49console.log('Results from dataset');
50console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
51const { items } = await client.dataset(run.defaultDatasetId).listItems();
52items.forEach((item) => {
53 console.dir(item);
54});
55
56// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Linkedin Company About Scraper API in JavaScript

The Apify API client for JavaScript is the official library that allows you to use Linkedin Company About Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

$npm install apify-client

Other API clients include: