Skip to main content

Search

Searching for companies

To search for companies in LinkedIn, you need to include searchCompanies action in your workflow. Here's an example:

Workflow:


{
  "actionType": "searchCompanies",
  "term": "Tech Inc",
  "limit": 2,
  "filter": {
    "sizes": ["51-200", "2001-500"],
    "locations": ["San Francisco", "New York"],
    "industries": ["Software Development", "Robotics Engineering"],
    "annualRevenue": {
      "min": "0",
      "max": "2.5"
    }
  }
}

Completion:



{
  "actionType": "searchCompanies",
  "success": true,
  "data": [
    {
      "name": "TechCorp",
      "hashedUrl": "https://www.linkedin.com/company/12345678",
      "industry": "Information Technology",
      "employeeCount": 500
    },
    {
      "name": "Techical Life",
      "hashedUrl": "https://www.linkedin.com/company/87654321",
      "industry": "Software Development",
      "employeeCount": 120
    }
  ]
}

💡
If you want to perform actions on companies from search results, use doForCompanies action.

This page provides examples of workflows and their completions. For detailed documentation on constraints, parameters, and possible results of specific actions, always refer to the corresponding action documentation pages.