Skip to main content
POST
/
crawl
/
linkedin
/
company
LinkedIn Company
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
  }
}

Authorizations

Authorization
string
header
required

API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)

Body

application/json
url
string<uri>
required
options
object

Response

Default Response

success
enum<boolean>
required
Available options:
true
data
object
required