# Which of my target accounts is hiring right now

**Use case:** 

Paste your account list as 40 company domains and get one row per company: how many manager, director and executive roles are open now, in which departments and countries, and the newest titles. Domains in our registry resolve instantly; the rest are matched to their job board by slug guess and careers-page detection, and any we cannot place is a free diagnostic. At most $0.201 for all 40.

## Input

```json
{
  "companies": [
    "stripe.com",
    "brex.com",
    "coinbase.com",
    "robinhood.com",
    "affirm.com",
    "chime.com",
    "carta.com",
    "gusto.com",
    "checkr.com",
    "ramp.com",
    "airbnb.com",
    "instacart.com",
    "reddit.com",
    "dropbox.com",
    "faire.com",
    "webflow.com",
    "flexport.com",
    "amplitude.com",
    "notion.com",
    "figma.com",
    "asana.com",
    "samsara.com",
    "lattice.com",
    "discord.com",
    "pinterest.com",
    "duolingo.com",
    "palantir.com",
    "openai.com",
    "harvey.ai",
    "writer.com",
    "plaid.com",
    "intercom.com",
    "mixpanel.com",
    "hubspot.com",
    "zapier.com",
    "benchling.com",
    "retool.com",
    "posthog.com",
    "miro.com",
    "canva.com"
  ],
  "mode": "snapshot",
  "firstRunBehavior": "baseline-only",
  "emitRoles": false,
  "roleScope": "new",
  "webhookUrl": "<YOUR_SECRET>",
  "titleFilter": [],
  "titleExclude": [],
  "seniorityLevels": [
    "manager",
    "director",
    "executive"
  ],
  "employmentTypes": [],
  "workplaceTypes": [],
  "countryCodes": [],
  "locationFilter": [],
  "hasSalary": false,
  "salaryFloor": 0,
  "postedWithinDays": 0,
  "atsPlatforms": [],
  "changedFields": [
    "title",
    "location",
    "salary"
  ],
  "maxRolesPerBoard": 2000,
  "maxCompanies": 500,
  "stateStoreName": "hiring-signals-api-state",
  "requestTimeoutSecs": 20,
  "maxRunSecs": 300,
  "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`).
