Endpoint
Request
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | ApiKey ck_... |
Content-Type | Yes | application/json |
Body
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
url | string | Yes | - | LinkedIn company URL (e.g., https://www.linkedin.com/company/example/) |
options.timeout | number | No | 30000 | Page load timeout in milliseconds (5000-60000) |
options.includeJobs | boolean | No | true | Whether to fetch job listings |
Response
Success (200)
Response Fields
| Field | Type | Description |
|---|---|---|
company.name | string | Company name |
company.industry | string | null | Company industry |
company.location | string | null | Company location |
company.followers | number | null | Number of LinkedIn followers |
company.slogan | string | null | Company slogan/tagline |
company.logoUrl | string | null | Company logo URL |
company.coverImageUrl | string | null | Cover image URL |
company.description | string | null | Company description |
company.website | string | null | Company website URL |
company.companySize | string | null | Company size range |
company.headquarters | string | null | Headquarters location |
company.companyType | string | null | Type of company (Public, Private, etc.) |
company.foundedYear | number | null | Year company was founded |
company.specialties | string[] | List of company specialties |
company.employees | array | Featured employees |
company.locations | string[] | All company locations |
company.similarCompanies | array | Similar companies on LinkedIn |
company.recentPosts | array | Recent company posts |
company.jobs | array | Current job listings (if includeJobs is true) |
company.linkedinUrl | string | Original LinkedIn URL |
company.scrapedAt | string | ISO timestamp of when data was scraped |
timing.total | number | Total request time in milliseconds |
creditsUsed | number | Credits charged (always 1) |
creditsRemaining | number | Your remaining credit balance |
Examples
Basic Request
Without Job Listings
With Increased Timeout
Error Responses
Invalid URL (400)
Unauthorized (401)
Insufficient Credits (402)
Timeout (408)
Scrape Failed (502)
Use Cases
Lead Generation
Gather company data for B2B sales prospecting
Market Research
Analyze competitors and industry trends
Recruitment
Find companies hiring in your field
Investment Research
Research companies for investment decisions
Tips
Use the correct URL format
Use the correct URL format
LinkedIn company URLs should follow the format:
https://www.linkedin.com/company/company-slug/. The trailing slash is optional.Disable jobs for faster response
Disable jobs for faster response
If you don’t need job listings, set
includeJobs: false to speed up the scraping process.Handle null values
Handle null values
Many fields can be null if the company hasn’t provided that information. Always check for null values in your code.