Skip to Content

LinkedIn API

Company profiles, job listings, posts, and user search.

  • Jobs and Companies return detailed data (salary, description, employee count, etc.)
  • Job search supports q and location filtering with pagination via offset

Companies

GET /linkedin/companies/:companyId — 4 credits

Get a LinkedIn company profile.

ParamTypeRequiredDescription
companyIdstringYesCompany vanity name or numeric ID (e.g., microsoft)
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/linkedin/companies/microsoft

Response

{ "id": "microsoft", "name": "Microsoft", "description": "Every company has a mission. What's ours? To empower every...", "industry": null, "size": "227436 employees", "website": "https://www.linkedin.com/company/microsoft", "logo": "https://media.licdn.com/...", "banner": null, "employeeCount": 227436, "headquarters": "Redmond, Washington, US", "specialties": null, "founded": null }

GET /linkedin/companies/:companyId/jobs — 2 credits

Get job listings for a specific company.

ParamTypeRequiredDefaultDescription
companyIdstringYesCompany numeric ID (e.g., 1035 for Microsoft)
countintegerNo25Number of results (max 100)
offsetintegerNo0Pagination offset
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/linkedin/companies/1035/jobs?count=10"

Response

{ "jobs": [ { "id": "4378774358", "title": "Motion Designer", "company": "Microsoft", "companyId": null, "location": "New York, United States", "description": "", "postedAt": "2026-02-27", "applyUrl": null, "employmentType": null, "experienceLevel": null, "salary": null, "benefits": null, "requirements": null } // ... more jobs ], "totalCount": null, "hasMore": true }

Jobs

GET /linkedin/jobs/search — 2 credits

Search LinkedIn job listings by keyword and location.

ParamTypeRequiredDefaultDescription
qstringYesSearch keywords (e.g., software engineer)
locationstringNoLocation filter (e.g., San Francisco)
countintegerNo25Number of results (max 100)
offsetintegerNo0Pagination offset
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/linkedin/jobs/search?q=product+manager&location=New+York"

Response

{ "jobs": [ { "id": "4199414033", "title": "Product Manager", "company": "Meta", "companyId": null, "location": "New York, NY", "description": "", "postedAt": "2026-03-03", "applyUrl": null, "employmentType": null, "experienceLevel": null, "salary": null, "benefits": null, "requirements": null } // ... more jobs ], "totalCount": null, "hasMore": true }

GET /linkedin/jobs/:jobId — 2 credits

Get full job posting details including description, salary, and requirements.

ParamTypeRequiredDefaultDescription
jobIdstringYesLinkedIn job ID
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/linkedin/jobs/4334158613

Response

{ "id": "4334158613", "title": "Software Engineer, Fullstack, Early Career", "company": "Notion", "companyId": null, "location": "San Francisco, CA", "description": "About Us\nNotion helps you build beautiful tools for your life's work...", "postedAt": "4 days ago", "applyUrl": null, "employmentType": "Full-time", "experienceLevel": "Entry level", "salary": null, "benefits": null, "requirements": null }

Posts

GET /linkedin/posts/:postId — 4 credits

Get a LinkedIn post.

Note: likeCount, commentCount, and repostCount are null for most posts.

ParamTypeRequiredDefaultDescription
postIdstringYesLinkedIn post ID
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/linkedin/posts/7293949807036649473

Response

{ "id": "7293949807036649473", "author": { "name": "John Doe", "username": "johndoe", "headline": "Software Engineer at Acme Corp", "profilePic": "https://..." }, "text": "Excited to share our latest project...", "likeCount": null, "commentCount": null, "repostCount": null, "publishedAt": "2026-02-15T10:30:00.000Z", "images": [], "video": null, "article": null }

Users

GET /linkedin/users/search — 3 credits

Search LinkedIn users/people by keyword.

ParamTypeRequiredDefaultDescription
qstringYesSearch keywords (e.g., software engineer)
countintegerNo25Number of results (max 100)
offsetintegerNo0Pagination offset
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/linkedin/users/search?q=software+engineer&count=10"

Response

{ "users": [ { "username": "growthexpert", "name": "Tahir M.", "location": "Lahore", "companies": "Finz Games, +5 more", "education": null, "profilePic": "https://...", "profileUrl": "https://www.linkedin.com/in/growthexpert" } // ... more users ], "totalCount": null, "hasMore": true }

GET /linkedin/users/:username — 4 credits

Get a LinkedIn user profile.

ParamTypeRequiredDefaultDescription
usernamestringYesLinkedIn username (vanity URL slug)
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/linkedin/users/satyanadella

Response

{ "id": null, "username": "satyanadella", "name": "Satya Nadella", "headline": null, "description": "As chairman and CEO of Microsoft, I define my mission and...", "jobTitles": ["Chairman and CEO", "Member Board Of Trustees"], "location": "Redmond, Washington, United States", "profilePic": "https://...", "bannerPic": null, "about": "Creator, Top Voice", "followers": 11885885, "connections": null, "isVerified": false, "experience": [ { "company": "Microsoft", "startDate": null, "endDate": null } // ... more experience ], "education": [ { "school": "The University of Chicago Booth School of Business", "startDate": 1994, "endDate": 1996 } // ... more education ], "articles": [ { "headline": "A Positive-Sum Future", "url": "https://www.linkedin.com/pulse/positive-sum-future-satya-nadella-bjs7c", "publishedAt": "2025-11-15T18:09:30.000+00:00", "image": null } // ... more articles ], "recentPosts": [ { "text": "", "url": "https://www.linkedin.com/posts/satyanadella_unify-simplify-...", "publishedAt": "2026-03-05T18:10:59.348Z", "likes": null, "comments": null } // ... more posts ] }