Companies/Search Companies
GET/api/company/search

Search Companies

Search for companies with filters for location and company size.

1 credit
Authentication required
Parameters
NameTypeRequiredDescription
keywordsstringRequiredSearch keywords (e.g., 'tech startup')
startintegerOptionalPagination offsetDefault: 0
countintegerOptionalResults per page (max 50)Default: 10
locationstringOptionalGeo URN ID (e.g., '103644278' for USA)
company_sizestringOptionalSize codes: A (self-employed), B (1-10), C (11-50), D (51-200), E (201-500), F (501-1000), G (1001-5000), H (5001-10000), I (10001+)
Response Example
{
  "results": [
    {
      "company_id": "1441",
      "universal_name": "google",
      "linkedin_url": "https://www.linkedin.com/company/google/",
      "name": "Google",
      "industry": "Software Development",
      "location": "Mountain View, CA",
      "followers": "40M followers",
      "insight": "5 connections work here"
    }
  ],
  "pagination": {
    "total_results": 3803,
    "start": 0,
    "count": 5,
    "has_more": true
  }
}
Try it out

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

Search keywords (e.g., 'tech startup')

Pagination offset

Results per page (max 50)

Geo URN ID (e.g., '103644278' for USA)

Size codes: A (self-employed), B (1-10), C (11-50), D (51-200), E (201-500), F (501-1000), G (1001-5000), H (5001-10000), I (10001+)

Code Examples
curl -X GET "https://api.heyscraper.io/api/company/search?keywords=%3Ckeywords%3E" \
  -H "X-API-Key: hs_live_your_api_key"