# Alert me when a company I want to work for opens roles

**Use case:** 

Watch eight companies you want to work for, weekly. Each run returns one row per company with what opened and closed since last week, plus one row per newly opened role: title, location, salary when posted and apply link. Set webhookUrl and a small JSON summary is POSTed to your endpoint too. The first run is a free baseline; each week after costs $0.041 plus $0.001 per new role.

## Input

```json
{
  "companies": [
    "anthropic.com",
    "linear.app",
    "figma.com",
    "notion.com",
    "vercel.com",
    "duolingo.com",
    "ramp.com",
    "supabase.com"
  ],
  "mode": "monitor",
  "firstRunBehavior": "baseline-only",
  "emitRoles": true,
  "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-watchlist-state",
  "requestTimeoutSecs": 20,
  "maxRunSecs": 240,
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "rowType": {
    "label": "Row type",
    "format": "string"
  },
  "changeType": {
    "label": "Change type",
    "format": "string"
  },
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "companyKey": {
    "label": "Company key",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "department": {
    "label": "Department",
    "format": "string"
  },
  "seniority": {
    "label": "Seniority",
    "format": "string"
  },
  "locationRaw": {
    "label": "Location (raw)",
    "format": "string"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "workplaceType": {
    "label": "Workplace type",
    "format": "string"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Salary currency",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "string"
  },
  "firstSeenAt": {
    "label": "First seen at",
    "format": "string"
  },
  "changedFields": {
    "label": "Changed fields",
    "format": "array"
  },
  "previousValues": {
    "label": "Previous values",
    "format": "object"
  },
  "reposted": {
    "label": "Reposted",
    "format": "boolean"
  },
  "applyUrl": {
    "label": "Apply 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`).
