# Daily job alert: new jobs from the last 24 hours

**Use case:** 

Schedule this task every morning and get only the jobs posted since yesterday from the busiest employers in our directory. Connect it to Slack, email or Google Sheets for a simple job alert. A daily run usually finds a few hundred new jobs, so add keywords to follow only the roles you care about and keep the cost down.

## Input

```json
{
  "companies": [
    "https://careers.voi.com",
    "https://jobs.lever.co/spotify",
    "https://jobs.ashbyhq.com/notion"
  ],
  "useDirectory": true,
  "maxCompanies": 400,
  "searchInDescription": false,
  "countries": [
    "EU"
  ],
  "postedWithinDays": 1,
  "maxJobsPerCompany": 0,
  "maxJobs": 500,
  "includeDescription": false,
  "redactContactDetails": true,
  "maxConcurrency": 16
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "countryCodes": {
    "label": "Countries",
    "format": "array"
  },
  "workplaceType": {
    "label": "Workplace",
    "format": "text"
  },
  "department": {
    "label": "Department",
    "format": "text"
  },
  "employmentType": {
    "label": "Employment",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted",
    "format": "date"
  },
  "applicationDeadline": {
    "label": "Deadline",
    "format": "date"
  },
  "url": {
    "label": "Job page",
    "format": "link"
  },
  "ats": {
    "label": "ATS",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Career Site Jobs Scraper: Teamtailor, Greenhouse, Lever](https://apify.com/vindr/eu-career-site-jobs.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vindr/eu-career-site-jobs.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/vindr/eu-career-site-jobs.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`).
