# Watch several company career sites at once

**Use case:** 

Reads three Workday career sites in a single run and shares the result budget fairly between them, so no single employer swamps the output. Each row says which tenant and career site it came from. Replace the list with the companies you follow.

## Input

```json
{
  "careerSiteUrls": [
    "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite",
    "https://redhat.wd5.myworkdayjobs.com/Jobs",
    "https://wd1.myworkdaysite.com/recruiting/paypal/jobs"
  ],
  "searchText": "software engineer",
  "locations": [
    "Santa Clara",
    "Remote"
  ],
  "remoteOnly": false,
  "includeKeywords": [
    "engineer",
    "data"
  ],
  "excludeKeywords": [
    "intern"
  ],
  "postedWithinDays": 7,
  "includeDescription": false,
  "maxJobsPerSite": 10,
  "maxTotal": 30,
  "completeLargeSites": true,
  "memoryName": "multi-company-watch",
  "reemitKnownJobs": false,
  "resetMemory": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Job title"
  },
  "company": {
    "label": "Company"
  },
  "locationsText": {
    "label": "Location"
  },
  "remoteType": {
    "label": "Remote type"
  },
  "timeType": {
    "label": "Time type"
  },
  "postedAt": {
    "label": "Posted date"
  },
  "postedText": {
    "label": "Posted label"
  },
  "jobReqId": {
    "label": "Requisition ID"
  },
  "url": {
    "label": "Job URL"
  },
  "changeType": {
    "label": "Change type"
  },
  "site": {
    "label": "Career site"
  },
  "tenant": {
    "label": "Workday tenant"
  }
}
```

## About this Actor

This example demonstrates how to use [Workday Jobs Scraper & API - Whole Career Site](https://apify.com/automation_craft/workday-jobs-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation_craft/workday-jobs-scraper.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/automation_craft/workday-jobs-scraper.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`).
