Companies/Get Company
GET/api/company/{identifier}

Get Company

Get comprehensive LinkedIn company data including employee count, headquarters, industries, specialties, and funding information.

1 credit
Authentication required
Parameters
NameTypeRequiredDescription
identifierstringRequiredCompany universal name (e.g., 'google') or LinkedIn URL
Response Example
{
  "company_id": "1441",
  "universal_name": "google",
  "linkedin_url": "https://www.linkedin.com/company/google",
  "name": "Google",
  "description": "A problem isn't truly solved until...",
  "website": "https://goo.gle/3DLEokh",
  "company_type": "PUBLIC_COMPANY",
  "employee_count": 331600,
  "employee_count_range": "10001+",
  "follower_count": 40452011,
  "headquarter": {
    "city": "Mountain View",
    "state": "CA",
    "country": "US"
  },
  "specialities": [
    "search",
    "ads",
    "mobile",
    "android",
    "machine learning"
  ],
  "industries": [
    "Software Development"
  ],
  "funding": {
    "total_rounds": 3,
    "last_round": {
      "funding_type": "SERIES_UNKNOWN",
      "amount": "25000000",
      "currency": "USD"
    }
  }
}
Try it out

No API keys found. Create a key to use the playground.

Company universal name (e.g., 'google') or LinkedIn URL

Code Examples
curl -X GET "https://api.heyscraper.io/api/company/<identifier>" \
  -H "X-API-Key: hs_live_your_api_key"