# Workday jobs with the full description and a real posting date

**Use case:** 

Job postings from six large Workday employers, each with the complete description and the exact date it was posted. Workday's listing endpoint publishes neither: per posting it gives a title, a location, and a relative string like "Posted 30+ Days Ago". This follows the second public endpoint that carries the rest, which is what makes Workday data usable for anything beyond counting.

## Input

```json
{
  "companies": [
    "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite",
    "https://salesforce.wd12.myworkdayjobs.com/External_Career_Site",
    "https://abbott.wd5.myworkdayjobs.com/abbottcareers",
    "https://blueorigin.wd5.myworkdayjobs.com/BlueOrigin",
    "https://thales.wd3.myworkdayjobs.com/Careers",
    "https://iqvia.wd1.myworkdayjobs.com/IQVIA"
  ],
  "useBuiltInCorpus": false,
  "corpusSample": 25,
  "remoteOnly": false,
  "postedWithinDays": 0,
  "includeDescriptions": true,
  "onlyNewOrChanged": false,
  "stateKey": "",
  "maxItems": 180,
  "maxPerCompany": 0,
  "concurrency": 10,
  "atsPlatforms": [
    "workday"
  ]
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "locationRaw": {
    "label": "Location",
    "format": "string"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "department": {
    "label": "Department",
    "format": "string"
  },
  "employmentType": {
    "label": "Type",
    "format": "string"
  },
  "compensationText": {
    "label": "Pay",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted",
    "format": "string"
  },
  "applyUrl": {
    "label": "Apply",
    "format": "string"
  },
  "atsLabel": {
    "label": "ATS",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Workday Jobs Scraper: Full Descriptions, Past the 2,000 Cap](https://apify.com/firstpartydata/workday-jobs-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/firstpartydata/workday-jobs-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/firstpartydata/workday-jobs-scraper.md

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).
