COMPANYDEVELOPER TOOLSAI API MCP READY

LinkedIn Company API

Collect public LinkedIn company pages as clean, structured JSON. Send one or many company URLs and get name, industry, size, headquarters, followers, specialties, locations, and Crunchbase link. Pay per company, MCP-ready for Claude and AI agents.

MEDIAN LAGon demand
PARAMETERS1
TOTAL USERS2
MONTHLY ACTIVE2
TOTAL RUNS115
RUNS SUCCEEDED100.0%
RATINGno ratings yet

Input parameters

PARAMETERTYPEREQDEFAULTDESCRIPTION
companyUrls string[] yes One or more LinkedIn company page URLs, e.g. https://www.linkedin.com/company/microsoft.

Worked examples

Basic — the required input, with the schema's own example values
{
  "companyUrls": [
    "https://www.linkedin.com/company/microsoft"
  ]
}

Tasks

Saved runs with the inputs already filled in — each one a standalone page and a working configuration example.

Request a task →

Code

curl

curl -X POST "https://api.apify.com/v2/acts/johnvc~linkedin-company-api/run-sync-get-dataset-items" \
  -H "Authorization: Bearer $APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"companyUrls": ["https://www.linkedin.com/company/microsoft"]}'

Python

from apify_client import ApifyClient

client = ApifyClient("APIFY_TOKEN")
run = client.actor("johnvc/linkedin-company-api").call(
    run_input={'companyUrls': ['https://www.linkedin.com/company/microsoft']}
)
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)