# Find remote engineering jobs on Workday sites

**Use case:** 

Keeps only the remote roles whose title mentions engineering, reading both Workday's remote label and the location text. Returns the title, location, posting date and a working apply link for each one. Add your own career sites to the list.

## Input

```json
{
  "careerSiteUrls": [
    "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite"
  ],
  "searchText": "software engineer",
  "locations": [
    "Santa Clara",
    "Remote"
  ],
  "remoteOnly": true,
  "includeKeywords": [
    "engineer"
  ],
  "excludeKeywords": [
    "intern"
  ],
  "postedWithinDays": 7,
  "includeDescription": false,
  "maxJobsPerSite": 20,
  "maxTotal": 20,
  "completeLargeSites": true,
  "memoryName": "weekly-nvidia",
  "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`).
