curl --request POST \
--url https://api.crawlkit.sh/v1/crawl/linkedin/company \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>",
"options": {
"timeout": 30000,
"includeJobs": true
}
}
'{
"success": true,
"data": {
"company": {
"name": "<string>",
"industry": "<string>",
"location": "<string>",
"followers": 123,
"slogan": "<string>",
"logoUrl": "<string>",
"coverImageUrl": "<string>",
"description": "<string>",
"website": "<string>",
"companySize": "<string>",
"headquarters": "<string>",
"companyType": "<string>",
"foundedYear": 123,
"specialties": [
"<string>"
],
"employees": [
{
"name": "<string>",
"photoUrl": "<string>",
"linkedinUrl": "<string>"
}
],
"locations": [
"<string>"
],
"similarCompanies": [
{
"name": "<string>",
"industry": "<string>",
"location": "<string>",
"logoUrl": "<string>",
"linkedinUrl": "<string>"
}
],
"recentPosts": [
{
"content": "<string>",
"postUrl": "<string>",
"timeAgo": "<string>",
"reactions": 123,
"comments": 123,
"imageUrls": [
"<string>"
]
}
],
"jobs": [
{
"title": "<string>",
"jobUrl": "<string>",
"jobId": "<string>",
"location": "<string>",
"postedTime": "<string>"
}
],
"linkedinUrl": "<string>",
"scrapedAt": "<string>"
},
"timing": {
"total": 123
},
"creditsUsed": 123,
"creditsRemaining": 123
}
}Scrapes a LinkedIn company profile page. Returns company information including name, industry, description, employees, and more. Costs 1 credit.
curl --request POST \
--url https://api.crawlkit.sh/v1/crawl/linkedin/company \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>",
"options": {
"timeout": 30000,
"includeJobs": true
}
}
'{
"success": true,
"data": {
"company": {
"name": "<string>",
"industry": "<string>",
"location": "<string>",
"followers": 123,
"slogan": "<string>",
"logoUrl": "<string>",
"coverImageUrl": "<string>",
"description": "<string>",
"website": "<string>",
"companySize": "<string>",
"headquarters": "<string>",
"companyType": "<string>",
"foundedYear": 123,
"specialties": [
"<string>"
],
"employees": [
{
"name": "<string>",
"photoUrl": "<string>",
"linkedinUrl": "<string>"
}
],
"locations": [
"<string>"
],
"similarCompanies": [
{
"name": "<string>",
"industry": "<string>",
"location": "<string>",
"logoUrl": "<string>",
"linkedinUrl": "<string>"
}
],
"recentPosts": [
{
"content": "<string>",
"postUrl": "<string>",
"timeAgo": "<string>",
"reactions": 123,
"comments": 123,
"imageUrls": [
"<string>"
]
}
],
"jobs": [
{
"title": "<string>",
"jobUrl": "<string>",
"jobId": "<string>",
"location": "<string>",
"postedTime": "<string>"
}
],
"linkedinUrl": "<string>",
"scrapedAt": "<string>"
},
"timing": {
"total": 123
},
"creditsUsed": 123,
"creditsRemaining": 123
}
}API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)
LinkedIn company URL (e.g., https://www.linkedin.com/company/dataexpert-io/)
Show child attributes
Was this page helpful?