# Track hiring at 21 developer-tools companies

**Use case:** 

One line of input, `preset:devtools`, and every run returns one row per company for 21 developer-tools and infrastructure companies: open roles now, roles opened and closed since the last run, department, seniority and location breakdowns, and a hiring-surge flag against each company’s own 30-day average. The first run is a free baseline; each run after costs at most $0.106.

## Input

```json
{
  "companies": [
    "preset:devtools"
  ],
  "mode": "monitor",
  "firstRunBehavior": "baseline-only",
  "emitRoles": false,
  "roleScope": "new",
  "webhookUrl": "<YOUR_SECRET>",
  "titleFilter": [],
  "titleExclude": [],
  "seniorityLevels": [],
  "employmentTypes": [],
  "workplaceTypes": [],
  "countryCodes": [],
  "locationFilter": [],
  "hasSalary": false,
  "salaryFloor": 0,
  "postedWithinDays": 0,
  "atsPlatforms": [],
  "changedFields": [
    "title",
    "location",
    "salary"
  ],
  "maxRolesPerBoard": 2000,
  "maxCompanies": 500,
  "stateStoreName": "hiring-signals-api-devtools-state",
  "requestTimeoutSecs": 20,
  "maxRunSecs": 240,
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "rowType": {
    "label": "Row type",
    "format": "string"
  },
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "companyDomain": {
    "label": "Company domain",
    "format": "string"
  },
  "atsPlatform": {
    "label": "ATS platform",
    "format": "string"
  },
  "openRoles": {
    "label": "Open roles",
    "format": "integer"
  },
  "openRolesDelta": {
    "label": "Open roles delta",
    "format": "integer"
  },
  "newRoles": {
    "label": "New roles",
    "format": "integer"
  },
  "closedRoles": {
    "label": "Closed roles",
    "format": "integer"
  },
  "changedRoles": {
    "label": "Changed roles",
    "format": "integer"
  },
  "hiringSurge": {
    "label": "Hiring surge",
    "format": "boolean"
  },
  "newRatio": {
    "label": "New-roles ratio",
    "format": "number"
  },
  "newPerDay30Days": {
    "label": "New per day (30 days)",
    "format": "number"
  },
  "historyDays": {
    "label": "History days",
    "format": "integer"
  },
  "remoteShare": {
    "label": "Remote share",
    "format": "number"
  },
  "salaryDisclosedShare": {
    "label": "Salary disclosed (share)",
    "format": "number"
  },
  "byDepartment": {
    "label": "By department",
    "format": "array"
  },
  "bySeniority": {
    "label": "By seniority",
    "format": "object"
  },
  "topTitles": {
    "label": "Top titles",
    "format": "array"
  },
  "newTitles": {
    "label": "New titles",
    "format": "array"
  },
  "resolvedFrom": {
    "label": "Resolved from",
    "format": "string"
  },
  "resolutionConfidence": {
    "label": "Resolution confidence",
    "format": "number"
  },
  "billable": {
    "label": "Billable",
    "format": "boolean"
  },
  "atsBoardUrl": {
    "label": "Board URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Hiring Signals API — Open Roles & Hiring Surge by Company](https://apify.com/insight.solutions/hiring-signals-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/insight.solutions/hiring-signals-api.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/insight.solutions/hiring-signals-api.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
