LinkedIn Company API
Company page for B2B intel — specialties, similarPages, size/founded, slogan, cover. Native 1 / enrich 2.
GET request to /v1/linkedin/company that responds with clean JSON and costs 2 credits. Pass cache=true for a free 24h cache hit; default is always fresh. Start with 100 free credits — no credit card.What is the LinkedIn Company API?
Pass a LinkedIn company URL and get B2B-ready JSON: name, industry, description, website, followers, employeeCount, size (e.g. 10,001+ employees), founded, organizationType (Public Company / …), specialties[], headquarters + location{city,state,country}, slogan, coverImage, logo, similarPages[{name,link,image}] (discovery graph — same pattern as profile similarProfiles), funding when upstream exposes rounds/investors, and employees[] for featured people when LinkedIn exposes them (guest pages usually return []). type stays the entity discriminator "company" — organizationType is the About "Type" field. Native guest HTML bills 1 credit; Apify enrich for slogan/cover (and rare funding) bills 2. Recent posts live on /linkedin/company-posts, not inlined here.
What you get
- specialties[] + organizationType + founded + size
- similarPages[] discovery graph (name/link)
- location{city,state,country} + headquarters string
- slogan + coverImage when enrich fills them
- employeeCount (headcount); employees[] featured people when exposed
- funding object when LinkedIn/Apify expose rounds — else null
Platform limits
Honest ceilings from the upstream platform surface — not Captapi bugs. Unexpected truncation here is usually the platform, not us.
- Guest /company/{slug}/ does not expose funding rounds or featured employee cards — funding and employees[] stay null/[] unless an enrich path fills them. ScrapeCreators often ships both.
- similarPages images are often omitted on guest HTML (name + link still return).
- Inline posts[] are not on this endpoint — use /v1/linkedin/company-posts.
- Apify input must be identifier:[slug]. Legacy company/url shapes could scrape the wrong company.
Try it
Fill in the parameters below and copy a ready-to-run request, or open the live Playground to run it against your account (no API key paste).
Parameters
curl "https://api.captapi.com/v1/linkedin/company?url=https%3A%2F%2Fca.linkedin.com%2Fcompany%2Fshopify" \
-H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."Edit the parameters and the code updates instantly. Switch languages and hit copy.
Example response
{
"success": true,
"data": {
"platform": "linkedin",
"type": "company",
"url": "https://ca.linkedin.com/company/shopify",
"name": "Shopify",
"industry": "Software Development",
"description": "Shopify is a leading global commerce company, providing trusted tools to start, grow, market, and manage a retail business of any size. Shopify makes commerce better for everyone with a platform and services that are engineered for reliability, while delivering a better shopping experience for consumers everywhere. Shopify powers millions of businesses in more than 175 countries and is trusted by brands such as Allbirds, Gymshark, PepsiCo, Staples, and many more.\n\nFind all our jobs here: www.shopify.com/careers",
"website": "https://www.shopify.com",
"followers": 1100174,
"employeeCount": 29621,
"employees": [],
"size": "10,001+ employees",
"founded": 2006,
"organizationType": "Public Company",
"specialties": [
"ecommerce",
"API"
],
"headquarters": "Ottawa, ON, CA",
"location": {
"city": "Ottawa",
"state": "ON",
"country": "CA"
},
"slogan": "Make commerce better for everyone",
"coverImage": "https://media.licdn.com/dms/image/v2/D561BAQHhgj9vXYPfGw/company-background_10000/B56ZanR4DlHUAg-/0/1746563203645/shopify_cover?e=1786471200&v=beta&t=ipMJX6bvyB3cy61qNb70u0k09GOWqudh6eQnnrtv3RM",
"logo": "https://media.licdn.com/dms/image/v2/D560BAQG_KjTcNcrLVw/company-logo_200_200/B56ZZolTV.HUAU-/0/1745511331439/shopify_logo?e=2147483647&v=beta&t=D2saVg58cKnwEiDQgFgzvwL24mTRM_cPuU1ndv6kL2U",
"funding": null,
"similarPages": [
{
"name": "Stripe",
"link": "https://www.linkedin.com/company/stripe",
"image": null
},
{
"name": "Spotify",
"link": "https://se.linkedin.com/company/spotify",
"image": null
}
]
}
}Billing metadata is returned in response headers: X-Captapi-Credits (credits charged), X-Captapi-Cache (hit or miss), and X-Captapi-Source. Failed requests (4xx/5xx) are never charged. See the full list of error codes in the error reference.
Response structure
A successful call returns success, cached, creditsUsed, and a data object with the following fields:
Top-level fields
platformPlatform identifier for this response (matches the endpoint's platform).typeEntity discriminator — always "company". Organization legal/type label is organizationType.urlCanonical URL of the item.nameName of the item or account. On profile endpoints: deprecated alias of displayName (one release).industryLinkedIn industry from the About section (e.g. Software Development).descriptionDescription text.websiteWebsite listed on the profile.followersFollower count.employeeCountLinkedIn headcount estimate for the company.employeesFeatured employees [{name,title,link}] when LinkedIn exposes them. Guest pages usually return []. Not the headcount — use employeeCount.sizeCompany size band from About (e.g. "10,001+ employees").foundedFounding year when present on the About section.organizationTypeAbout "Type" (e.g. Public Company). Distinct from type:"company".specialtiesAbout specialties list.headquartersHeadquarters. Example: "Ottawa, ON, CA".sloganCompany tagline.coverImageCompany cover/background image URL.logoLogo image URL.fundingFunding rounds/investors when upstream exposes them; null on guest HTML / empty Apify funding blobs. ScrapeCreators often fills this.
Location
The location object contains:
cityCity. Example: "Ottawa".stateState. Example: "ON".countryCountry for the request context. On popular-creators top-level: ISO feed market you queried (e.g. US) — not each creator's home country (see region).
Similar pages
Each item in similarPages contains:
nameName of the item or account. On profile endpoints: deprecated alias of displayName (one release).linkLink URL.imageImage URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Yes | LinkedIn company URL, e.g. https://www.linkedin.com/company/shopify. The URL platform must match this endpoint's platform. Do not pass cross-platform URLs, e.g. YouTube to TikTok, Instagram to Facebook, LinkedIn to X/Twitter, or Pinterest to Rumble. |
| cache | boolean | No | Set true to serve from the 24h response cache (0 credits on hit). Default false — always fetch fresh. Envelope includes cached + cachedAt on hits. |
Authentication: send your key as Authorization: Bearer capt_live_.... A typical call costs 2 credits. Pass cache=true for a free 24h cache hit; default is always fresh.
How it works
- 1. Sign up — get 100 free credits, no card required.
- 2. Create a key from your dashboard.
- 3. Send one request to
/v1/linkedin/companyand parse the JSON response.
Use cases
Profile Enrichment
Add live stats, bio, and account flags to a contact you already have.
Creator Verification
Confirm a known handle, audience size, and business/verified status before outreach.
Competitive Analysis
Track follower growth and posting cadence for accounts you already follow.
Partnership Qualification
Vet known partnership and sponsorship targets with fresh profile data.
Frequently asked questions
What does the LinkedIn Company API do?+
The LinkedIn Company API lets you fetch profile or page details and audience stats from a public LinkedIn profile or page using one GET request to /v1/linkedin/company. It returns clean JSON — no OAuth or infrastructure setup required.
How many credits does the LinkedIn Company API cost?+
Each successful call costs 2 credits. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Failed or empty results are never charged.
Do I need a LinkedIn API key or OAuth?+
No. A single Captapi key works across every platform Captapi supports — YouTube, TikTok, Instagram, Facebook, Twitter/X, Reddit, Threads, Bluesky, Pinterest, LinkedIn, Rumble, Spotify, Kwai, and more. We handle proxies, rate limits, retries, and authentication for you.
Is the LinkedIn Company API suitable for production use?+
Yes. It is a stable REST endpoint with predictable JSON and automatic retries. Pass cache=true to serve from the 24h cache (0 credits on hit); default is always fresh. Hits include cached + cachedAt. Selected profile endpoints also accept cacheMaxAge=1d|3d|7d|14d|30d. Use it for analytics, monitoring, and content automation.
More LinkedIn APIs
Ready to use the LinkedIn Company API?
Sign up, grab your key, and make your first call in 60 seconds.