LinkedIn Company
Extract data from LinkedIn company pages including employees, jobs, and posts. Perfect for B2B sales and competitive intelligence.
Try on PlaygroundAuthentication
Send your Crawlkit API key as a Bearer token in the Authorization header.
Authorization: Bearer ck_your_api_keyRequest Parameters
Send these JSON body fields in your request payload.
| Name | Type | Description |
|---|---|---|
url | string | Public target URL. |
options.includeJobs | boolean | Include open jobs. |
Example Request
Use direct HTTP requests against the public API base URL.
Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/linkedin/company', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 url: 'https://linkedin.com/company/microsoft',9 options: {10 includeJobs: true11 }12 })13});14 15const { data } = await response.json();16console.log(data.company.name, data.company.industry);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "company": {5 "name": "Microsoft",6 "industry": "Software Development",7 "location": "Redmond, Washington, United States",8 "slogan": "Empowering every person and every organization on the planet to achieve more.",9 "logoUrl": "https://media.licdn.com/dms/image/C560BAQ...",10 "coverImageUrl": "https://media.licdn.com/dms/image/D5616AQ...",11 "description": "Every company has a mission...",12 "website": "https://microsoft.com",13 "companySize": "10,001+ employees",14 "headquarters": "Redmond, Washington",15 "companyType": "Public Company",16 "foundedYear": 1975,17 "specialties": ["Cloud", "AI", "Software"],18 "followers": 22000000,19 "employees": [20 {21 "name": "Satya Nadella",22 "photoUrl": "https://media.licdn.com/dms/image/C5603AQF...",23 "linkedinUrl": "https://www.linkedin.com/in/satyanadella"24 }25 ],26 "locations": ["Redmond, Washington, United States"],27 "similarCompanies": [28 {29 "name": "Google",30 "industry": "Software Development",31 "location": "Mountain View, California, United States",32 "logoUrl": "https://media.licdn.com/dms/image/C4E0BAQ...",33 "linkedinUrl": "https://www.linkedin.com/company/google"34 }35 ],36 "recentPosts": [37 {38 "content": "We are building the next generation of AI infrastructure.",39 "postUrl": "https://www.linkedin.com/feed/update/urn:li:activity:1234567890",40 "timeAgo": "3d",41 "reactions": 1420,42 "comments": 116,43 "imageUrls": ["https://media.licdn.com/dms/image/D4E22AQ..."]44 }45 ],46 "jobs": [47 {48 "title": "Senior Software Engineer",49 "jobUrl": "https://www.linkedin.com/jobs/view/1234567890",50 "jobId": "1234567890",51 "location": "Redmond, Washington, United States",52 "postedTime": "2 days ago"53 }54 ],55 "linkedinUrl": "https://linkedin.com/company/microsoft",56 "scrapedAt": "2026-03-29T09:20:00.000Z"57 },58 "timing": { "total": 8500 },59 "creditsUsed": 1,60 "creditsRemaining": 9961 }62}