# New jobs alert to Slack from company career pages

**Use case:** 

Get a Slack message on days when the companies you follow post or close jobs. Schedule this task daily and paste a Slack, Teams or Discord webhook link in Alert webhook URL. Each message lists the new and closed jobs with links, and nothing is sent on quiet days. The alert is free. The first run is $0.01 per company, later checks from $0.002 per company.

## Input

```json
{
  "companies": [
    "https://job-boards.greenhouse.io/anthropic",
    "https://jobs.ashbyhq.com/openai",
    "https://job-boards.greenhouse.io/stripe",
    "https://jobs.ashbyhq.com/elevenlabs"
  ],
  "outputMode": "jobs",
  "includeDescription": false,
  "maxJobsPerCompany": 50,
  "onlyNewJobs": true,
  "monitorName": "slack-alerts",
  "includeUpdatedJobs": false,
  "alertMaxJobs": 10,
  "alertOnFirstCheck": false,
  "titleIncludes": [
    "engineer"
  ],
  "department": "engineering",
  "location": "London",
  "remoteOnly": false,
  "jobFunctions": [
    "engineering",
    "data"
  ],
  "descriptionIncludes": [
    "Snowflake",
    "dbt"
  ],
  "hasSalary": false,
  "minAnnualSalaryCurrency": "USD",
  "postedSince": "7 days",
  "visaSponsorship": false
}
```

## Output

```json
{
  "change": {
    "label": "Change",
    "format": "string"
  },
  "alertText": {
    "label": "Alert text",
    "format": "string"
  },
  "companyName": {
    "label": "Name on the board",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "workplaceType": {
    "label": "Workplace",
    "format": "string"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Currency",
    "format": "string"
  },
  "salaryPeriod": {
    "label": "Pay period",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "string"
  },
  "daysOpen": {
    "label": "Days open",
    "format": "integer"
  },
  "url": {
    "label": "Job link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Live Jobs HTTP API: Greenhouse, Lever, Ashby, Workday](https://apify.com/conserving_celerytop/live-jobs-http-api.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/conserving_celerytop/live-jobs-http-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/conserving_celerytop/live-jobs-http-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`).
