LinkedIn

Scrape single page in Python

Scrape data from single page with provided URL.

Run on Apify81 userson Apify, measured 2026-08-24

What it extracts

Data not currently verified. The output schema for this Actor is not published in our source repository. See the Apify listing for the authoritative version.

Input parameters

Generated from the Actor’s input schema — the same fields the Apify console shows.

ParameterTypeRequiredDescription
urlsarrayRequiredList of LinkedIn company URLs you want to scrape. One URL per line.
cookiesarrayRequiredCookies are used to authorize the actor with LinkedIn Follow these steps to get the cookies: 1. Install [Edit Cookie](https://chromewebstore.google.com/detail/cookie-editor/hlkenndednhfkekhgcdicdfddnkalmdm) chrome extension 2. Login to your LinkedIn account 3. Click on the extension and export the LinkedIn cookies 4. Paste the copied contents here [Video - How to get cookies (0:14)](https://www.youtube.com/watch?v=YuKp9BlVgNM)

API access

Run this Actor from your own code over the Apify API.

Inputjson
{
  "urls": [
    "https://www.linkedin.com/company/paperweight",
    "https://www.linkedin.com/company/tile-giant"
  ],
  "cookies": []
}
REST — run and get resultsbash
curl -X POST \
  "https://api.apify.com/v2/acts/logical_scrapers~linkedin-company-scraper-deep/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"urls":["https://www.linkedin.com/company/paperweight","https://www.linkedin.com/company/tile-giant"],"cookies":[]}'
JavaScript — apify-clientjavascript
import { ApifyClient } from 'apify-client'

const client = new ApifyClient({ token: 'YOUR_API_TOKEN' })

const run = await client.actor('logical_scrapers~linkedin-company-scraper-deep').call({
  "urls": [
    "https://www.linkedin.com/company/paperweight",
    "https://www.linkedin.com/company/tile-giant"
  ],
  "cookies": []
})

const { items } = await client.dataset(run.defaultDatasetId).listItems()
console.log(items)
Python — apify-clientpython
from apify_client import ApifyClient

client = ApifyClient("YOUR_API_TOKEN")

run = client.actor("logical_scrapers~linkedin-company-scraper-deep").call(run_input={
    "urls": [
        "https://www.linkedin.com/company/paperweight",
        "https://www.linkedin.com/company/tile-giant",
    ],
    "cookies": [],
})

for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

Runs are executed on Apify. Create an API token in your Apify account, then call the Actor over REST or with the official client for your language. The same input object works in the Apify console, so you can test interactively before automating.

Pricing

Data not currently verified. This Actor's pricing model is not declared in our source repository.

Current rates are published on the Apify listing and can change, so they are not duplicated here. See pricing on Apify

Reliability

99.4% run success rate

Measured across all public Goldmine Actors on Apify, 2026-08-24. This is an account-level figure, not a per-Actor benchmark — per-Actor speed and completeness benchmarks are not yet published. Source.

Field and input tables are generated from this Actor's published schemas. Usage figures measured 2026-08-24 from the Apify listing.