# Workday Job Scraper Fast Edition (`miladamirzadeh/workday-job-scraper-fast-edition`) Actor

High-speed Workday job scraper that paginates a given Workday careers URL, applies optional keyword/location filters, fetches detail pages for descriptions and qualifications, and stores structured job postings to the default dataset.

- **URL**: https://apify.com/miladamirzadeh/workday-job-scraper-fast-edition.md
- **Developed by:** [Milad Amirzadeh](https://apify.com/miladamirzadeh) (community)
- **Categories:** Jobs, Automation, Lead generation
- **Stats:** 48 total users, 3 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 4.77 out of 5 stars

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

### Workday Job Scraper (Fast Edition)

A high-speed, low-fingerprint actor for extracting job postings from Workday-powered career sites. It uses new techniques to scrap data quickly.

#### What this actor does

- Scrapes job listings from a provided Workday career site URL (e.g., `https://company.wd5.myworkdayjobs.com/CAREERS`).
- Paginates through results and applies optional title and location filters.
- Fetches job detail pages for descriptions and qualifications when available.
- Stores all results as structured JSON items in the default dataset.

#### Input

Pass the following properties via the Apify input UI or JSON:

```json
{
    "start_url": "https://company.wd5.myworkdayjobs.com/CAREERS",
    "max_items": 100,
    "proxy_configuration": { "useApifyProxy": true },
    "keyword_filter": "engineer, data",
    "location_filter": "USA, Remote"
}
```

- `start_url` (string, required): Workday careers search page URL.
- `max_items` (integer, default 100): Maximum jobs to collect. Set a high value to fetch more.
- `proxy_configuration` (object, default uses Apify proxy): Use Residential proxies for stricter tenants (Netflix, RTX, etc.).
- `keyword_filter` (string): Comma-separated keywords matched against job titles (case-insensitive).
- `location_filter` (string): Comma-separated locations matched against any job location text.

#### Output

Each dataset item follows this structure:

```json
{
    "job_title": "Senior Data Engineer",
    "company": "ExampleCorp",
    "job_url": "https://company.wd5.myworkdayjobs.com/en-US/CAREERS/job/1234",
    "locations": ["Remote", "USA"],
    "country": "USA",
    "time_type": "Full time",
    "posted_on": "2024-10-05",
    "post_id": "R-123456",
    "description": "Full job description HTML/text...",
    "responsibilities": "Key responsibilities text...",
    "qualifications": "Qualifications text..."
}
```

#### Tips

- Prefer Residential proxies for heavily protected tenants; Datacenter proxies can work for others.
- Provide precise `keyword_filter` / `location_filter` to reduce noise and speed up runs.
- If a site layout changes, verify the `start_url` points to the standard Workday search page before reporting issues.

#### Support

Issues and contributions are welcome. Describe the target `start_url`, proxy type, and any error messages for faster triage.

# Actor input Schema

## `start_url` (type: `string`):

The link to the Workday job search page (e.g., https://company.wd5.myworkdayjobs.com/CAREERS).

## `max_items` (type: `integer`):

Maximum number of jobs to scrape. Set to 0 for all.

## `proxy_configuration` (type: `object`):

Select 'Residential Proxy' for strict sites (like RTX/Defense). 'Datacenter' is fine for standard sites.

## `keyword_filter` (type: `string`):

Comma-separated keywords to filter titles (e.g., 'python, manager'). Leave empty to scrape all.

## `location_filter` (type: `string`):

Comma-separated locations to filter (e.g., 'USA, Remote'). Leave empty to scrape all.

## Actor input object example

```json
{
  "start_url": "https://ag.wd3.myworkdayjobs.com/Airbus",
  "max_items": 100,
  "proxy_configuration": {
    "useApifyProxy": true
  },
  "keyword_filter": "",
  "location_filter": ""
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("miladamirzadeh/workday-job-scraper-fast-edition").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("miladamirzadeh/workday-job-scraper-fast-edition").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call miladamirzadeh/workday-job-scraper-fast-edition --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=miladamirzadeh/workday-job-scraper-fast-edition",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Workday Job Scraper Fast Edition",
        "description": "High-speed Workday job scraper that paginates a given Workday careers URL, applies optional keyword/location filters, fetches detail pages for descriptions and qualifications, and stores structured job postings to the default dataset.",
        "version": "1.0",
        "x-build-id": "14c55mD6oeFOjd9aD"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/miladamirzadeh~workday-job-scraper-fast-edition/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-miladamirzadeh-workday-job-scraper-fast-edition",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/miladamirzadeh~workday-job-scraper-fast-edition/runs": {
            "post": {
                "operationId": "runs-sync-miladamirzadeh-workday-job-scraper-fast-edition",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/miladamirzadeh~workday-job-scraper-fast-edition/run-sync": {
            "post": {
                "operationId": "run-sync-miladamirzadeh-workday-job-scraper-fast-edition",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "start_url"
                ],
                "properties": {
                    "start_url": {
                        "title": "Start URL",
                        "type": "string",
                        "description": "The link to the Workday job search page (e.g., https://company.wd5.myworkdayjobs.com/CAREERS).",
                        "default": "https://ag.wd3.myworkdayjobs.com/Airbus"
                    },
                    "max_items": {
                        "title": "Max Items",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of jobs to scrape. Set to 0 for all.",
                        "default": 100
                    },
                    "proxy_configuration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Select 'Residential Proxy' for strict sites (like RTX/Defense). 'Datacenter' is fine for standard sites.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "keyword_filter": {
                        "title": "Keywords Filter",
                        "type": "string",
                        "description": "Comma-separated keywords to filter titles (e.g., 'python, manager'). Leave empty to scrape all.",
                        "default": ""
                    },
                    "location_filter": {
                        "title": "Location Filter",
                        "type": "string",
                        "description": "Comma-separated locations to filter (e.g., 'USA, Remote'). Leave empty to scrape all.",
                        "default": ""
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
