# Company Hiring Intelligence

**Use case:** 

Aggregate Indeed jobs into per-company hiring intelligence: open roles, hiring momentum, lifecycle stage, role mix and a recommended action. JSON or CSV.

## Input

```json
{
  "queries": [
    {
      "position": "software engineer",
      "location": "New York"
    },
    {
      "position": "data engineer",
      "location": "New York"
    },
    {
      "position": "product manager",
      "location": "New York"
    }
  ],
  "country": "US",
  "postedWithinDays": 14,
  "salaryTypes": [],
  "maxResultsPerQuery": 30,
  "maxRuntimeSeconds": 1800,
  "outputTier": "intelligence",
  "includeJobs": true,
  "includeCompanyIntelligence": true,
  "includeSignals": true,
  "extractDescriptions": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "groups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Record Type",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "openRolesInRun": {
    "label": "Open Roles In Run",
    "format": "integer"
  },
  "hiringMomentum": {
    "label": "Hiring Momentum",
    "format": "object"
  },
  "lifecycleStage": {
    "label": "Lifecycle Stage",
    "format": "string"
  },
  "hiringProfile": {
    "label": "Hiring Profile",
    "format": "object"
  },
  "recommendedAction": {
    "label": "Recommended Action",
    "format": "object"
  },
  "roleMix": {
    "label": "Role Mix",
    "format": "object"
  },
  "geographicConcentration": {
    "label": "Geographic Concentration",
    "format": "object"
  },
  "salaryBand": {
    "label": "Salary Band",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Indeed Hiring Intelligence](https://apify.com/ryanclinton/indeed-hiring-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/indeed-hiring-intelligence) to learn more, explore other use cases, and run it yourself.