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 USERS18
MONTHLY ACTIVE11
TOTAL RUNS336
SUCCESS (30D)79.5%
RATINGno ratings yet
LAST MODIFIED2026-09-03
PUBLISHED2026-07

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"
  ]
}

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)