# Workday Jobs API & Hiring Signals (`lirafrt/workday-jobs-hiring-signals`) Actor

Export public Workday career-site jobs as normalized records with filters, details, stable hashes, partial-failure reporting, and free hiring summaries.

- **URL**: https://apify.com/lirafrt/workday-jobs-hiring-signals.md
- **Developed by:** [Murilo Lira](https://apify.com/lirafrt) (community)
- **Categories:** Jobs, Lead generation, Business
- **Stats:** 2 total users, 1 monthly users, 91.7% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 workday jobs

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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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 Jobs API & Hiring Signals

Extract live public job postings from one or many `*.myworkdayjobs.com` career sites. The Actor uses the career site's own JSON responses, normalizes inconsistent fields, applies bounded filters, and can emit one deterministic hiring summary per employer site.

No Workday login, customer API key, LLM key, or proxy is required for ordinary runs.

### Why use this Actor

- Collect real-time jobs from URLs you choose instead of querying a stale third-party job database.
- Get job descriptions, requisition IDs, time type, dates, remote labels, and application URLs when the source publishes them.
- Search on the Workday server, then apply repeatable title/description/location filters locally.
- Monitor multiple employers with per-site and global caps.
- Preserve missing source fields as `null` instead of inventing values.
- Inspect partial failures in `RUN_SUMMARY` without losing valid sites.

### Input example

```json
{
  "startUrls": [
    "https://workday.wd5.myworkdayjobs.com/Workday?q=engineer"
  ],
  "maxJobs": 25,
  "scanLimitPerSite": 100,
  "includeDetails": true,
  "keywords": ["python", "machine learning"],
  "excludeKeywords": ["manager"],
  "locations": [],
  "remoteOnly": false,
  "includeSummary": true
}
````

Use the employer's public career-board URL. URLs must use HTTPS on `*.myworkdayjobs.com`; employee portals, arbitrary domains, credentials, and custom ports are rejected.

`?q=` in a URL takes priority over the global `searchText`. `scanLimitPerSite` is a hard cost guardrail: local filters can only inspect the listings that were scanned.

### Job output

```json
{
  "recordType": "job",
  "source": "workday",
  "tenant": "workday",
  "site": "Workday",
  "companyName": null,
  "jobId": "...",
  "requisitionId": "JR-0103461",
  "title": "LLM Engineer",
  "location": "Israel, Tel Aviv",
  "country": "Israel",
  "remoteType": "Flex",
  "workplaceType": "hybrid",
  "timeType": "Full time",
  "postedAt": "2026-06-01T00:00:00Z",
  "postedOnText": "Posted 30+ Days Ago",
  "descriptionText": "...",
  "descriptionHtml": "...",
  "applicationUrl": "https://...",
  "sourcePageUrl": "https://...",
  "sourceApiUrl": "https://...",
  "externalPath": "/job/...",
  "contentHash": "...",
  "collectedAt": "2026-07-17T00:00:00Z",
  "raw": null
}
```

Workday tenants expose different fields. Unknown means `null`; `companyName` is intentionally not guessed from the tenant slug.

### Hiring summaries

When `includeSummary` is enabled, a free `hiring-summary` row follows each readable site. It contains source, matched, published, explicitly remote, and location counts. A run-level record is also saved to `RUN_SUMMARY` with:

- successful and failed sites;
- discovered, matched, and published jobs;
- detail requests and isolated detail failures;
- the customer's PPE charge-limit state.

### Cost controls

- Default memory: 256 MB.
- List pages contain at most 20 jobs per request.
- `scanLimitPerSite`, `maxJobsPerSite`, and `maxJobs` bound work and output.
- Set `includeDetails: false` for the cheapest title/location-only collection.
- No proxy or paid enrichment dependency is enabled.
- Store pricing is **$0.001 per published `workday_job`** (US$1.00 per 1,000 jobs), plus a one-time **$0.00005** `apify-actor-start` event per run; hiring summaries are included at no extra charge.

### Limitations

- This Actor supports public `myworkdayjobs.com` career boards, not authenticated Workday products.
- Workday's public career-site JSON route is not presented as a supported customer API. Tenants can change behavior independently.
- `postedOnText` may be relative. An exact `postedAt` is returned only when the detail response publishes one.
- Remote and hybrid labels are conservative: explicit `Remote`, `Flex`/`Hybrid`, or visible title/location text only.
- A successful run does not imply that every employer publishes every field.

### Responsible use

Collect public job data at reasonable rates and comply with applicable law, source terms, and the target employer's instructions. The Actor rejects arbitrary hosts and does not access logins or submit applications.

# Actor input Schema

## `startUrls` (type: `array`):

Public \*.myworkdayjobs.com career-board URLs. A URL query such as ?q=engineer becomes that site's server-side search.

## `searchText` (type: `string`):

Optional server-side search used for URLs without their own ?q= value.

## `maxJobs` (type: `integer`):

Global maximum number of job records written. Hiring summaries do not count toward this limit.

## `maxJobsPerSite` (type: `integer`):

Prevents one employer from consuming the whole result limit.

## `scanLimitPerSite` (type: `integer`):

Hard request-cost guardrail. Increase when selective local filters must inspect more candidates.

## `includeDetails` (type: `boolean`):

Fetch public detail JSON for descriptions, requisition IDs, time type, exact dates, and application URLs.

## `keywords` (type: `array`):

Keep jobs containing at least one term in title, location, or description. Blank means all jobs.

## `excludeKeywords` (type: `array`):

Drop jobs containing any term in title, location, or description.

## `locations` (type: `array`):

Keep jobs whose published location contains at least one term.

## `remoteOnly` (type: `boolean`):

Keep only jobs explicitly marked remote. Flex or hybrid is not treated as remote-only.

## `postedAfter` (type: `string`):

Optional inclusive UTC date. Jobs with an unknown exact date are preserved.

## `includeSummary` (type: `boolean`):

Write one summary per readable career site with source, match, remote, and location counts.

## `maxConcurrency` (type: `integer`):

Concurrent public site and detail requests.

## `requestTimeoutSecs` (type: `integer`):

Per-request timeout in seconds.

## `maxRetries` (type: `integer`):

Retries for rate limits, timeouts, and transient server errors.

## `includeRaw` (type: `boolean`):

Attach listing and detail JSON for debugging. This increases dataset size.

## Actor input object example

```json
{
  "startUrls": [
    "https://workday.wd5.myworkdayjobs.com/Workday?q=engineer"
  ],
  "searchText": "",
  "maxJobs": 100,
  "maxJobsPerSite": 100,
  "scanLimitPerSite": 200,
  "includeDetails": true,
  "keywords": [],
  "excludeKeywords": [],
  "locations": [],
  "remoteOnly": false,
  "includeSummary": true,
  "maxConcurrency": 5,
  "requestTimeoutSecs": 25,
  "maxRetries": 2,
  "includeRaw": false
}
```

# Actor output Schema

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

Normalized Workday jobs and per-site hiring-summary records.

## `runSummary` (type: `string`):

Counts, partial site/detail failures, and charge-limit state.

# 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 = {
    "startUrls": [
        "https://workday.wd5.myworkdayjobs.com/Workday"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("lirafrt/workday-jobs-hiring-signals").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 = { "startUrls": ["https://workday.wd5.myworkdayjobs.com/Workday"] }

# Run the Actor and wait for it to finish
run = client.actor("lirafrt/workday-jobs-hiring-signals").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 '{
  "startUrls": [
    "https://workday.wd5.myworkdayjobs.com/Workday"
  ]
}' |
apify call lirafrt/workday-jobs-hiring-signals --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=lirafrt/workday-jobs-hiring-signals",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Workday Jobs API & Hiring Signals",
        "description": "Export public Workday career-site jobs as normalized records with filters, details, stable hashes, partial-failure reporting, and free hiring summaries.",
        "version": "0.1",
        "x-build-id": "w5E3bccjpwuiLzXEQ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/lirafrt~workday-jobs-hiring-signals/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-lirafrt-workday-jobs-hiring-signals",
                "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/lirafrt~workday-jobs-hiring-signals/runs": {
            "post": {
                "operationId": "runs-sync-lirafrt-workday-jobs-hiring-signals",
                "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/lirafrt~workday-jobs-hiring-signals/run-sync": {
            "post": {
                "operationId": "run-sync-lirafrt-workday-jobs-hiring-signals",
                "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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Workday career-site URLs",
                        "minItems": 1,
                        "maxItems": 20,
                        "type": "array",
                        "description": "Public *.myworkdayjobs.com career-board URLs. A URL query such as ?q=engineer becomes that site's server-side search.",
                        "items": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 500
                        }
                    },
                    "searchText": {
                        "title": "Workday search text",
                        "maxLength": 200,
                        "type": "string",
                        "description": "Optional server-side search used for URLs without their own ?q= value.",
                        "default": ""
                    },
                    "maxJobs": {
                        "title": "Maximum jobs",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Global maximum number of job records written. Hiring summaries do not count toward this limit.",
                        "default": 100
                    },
                    "maxJobsPerSite": {
                        "title": "Maximum jobs per site",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Prevents one employer from consuming the whole result limit.",
                        "default": 100
                    },
                    "scanLimitPerSite": {
                        "title": "Maximum listings scanned per site",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Hard request-cost guardrail. Increase when selective local filters must inspect more candidates.",
                        "default": 200
                    },
                    "includeDetails": {
                        "title": "Fetch job details",
                        "type": "boolean",
                        "description": "Fetch public detail JSON for descriptions, requisition IDs, time type, exact dates, and application URLs.",
                        "default": true
                    },
                    "keywords": {
                        "title": "Include keywords",
                        "maxItems": 30,
                        "type": "array",
                        "description": "Keep jobs containing at least one term in title, location, or description. Blank means all jobs.",
                        "items": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                        },
                        "default": []
                    },
                    "excludeKeywords": {
                        "title": "Exclude keywords",
                        "maxItems": 30,
                        "type": "array",
                        "description": "Drop jobs containing any term in title, location, or description.",
                        "items": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                        },
                        "default": []
                    },
                    "locations": {
                        "title": "Locations",
                        "maxItems": 30,
                        "type": "array",
                        "description": "Keep jobs whose published location contains at least one term.",
                        "items": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 100
                        },
                        "default": []
                    },
                    "remoteOnly": {
                        "title": "Explicitly remote only",
                        "type": "boolean",
                        "description": "Keep only jobs explicitly marked remote. Flex or hybrid is not treated as remote-only.",
                        "default": false
                    },
                    "postedAfter": {
                        "title": "Posted on or after",
                        "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
                        "type": "string",
                        "description": "Optional inclusive UTC date. Jobs with an unknown exact date are preserved."
                    },
                    "includeSummary": {
                        "title": "Publish hiring summaries",
                        "type": "boolean",
                        "description": "Write one summary per readable career site with source, match, remote, and location counts.",
                        "default": true
                    },
                    "maxConcurrency": {
                        "title": "Maximum concurrency",
                        "minimum": 1,
                        "maximum": 15,
                        "type": "integer",
                        "description": "Concurrent public site and detail requests.",
                        "default": 5
                    },
                    "requestTimeoutSecs": {
                        "title": "Request timeout",
                        "minimum": 5,
                        "maximum": 60,
                        "type": "integer",
                        "description": "Per-request timeout in seconds.",
                        "default": 25
                    },
                    "maxRetries": {
                        "title": "Maximum retries",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Retries for rate limits, timeouts, and transient server errors.",
                        "default": 2
                    },
                    "includeRaw": {
                        "title": "Include raw source payloads",
                        "type": "boolean",
                        "description": "Attach listing and detail JSON for debugging. This increases dataset size.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
