# Find Remote Jobs on Any Workday Careers Site

**Use case:** 

Search any Workday careers site for remote roles and get structured JSON with titles, locations, remote type, posted dates, and apply URLs. Pay per result.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://workday.wd5.myworkdayjobs.com/Workday"
    }
  ],
  "searchText": "remote",
  "maxJobsPerSite": 200,
  "includeDetails": true,
  "descriptionFormat": "both",
  "detailConcurrency": 5
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "locationsText": {
    "label": "Locations Text",
    "format": "string"
  },
  "postedDate": {
    "label": "Posted Date",
    "format": "string"
  },
  "postedOn": {
    "label": "Posted (relative)",
    "format": "string"
  },
  "timeType": {
    "label": "Time Type",
    "format": "string"
  },
  "remoteType": {
    "label": "Remote Type",
    "format": "string"
  },
  "jobReqId": {
    "label": "Requisition ID",
    "format": "string"
  },
  "url": {
    "label": "Job URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Workday Careers API](https://apify.com/johnvc/workday-careers-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/workday-careers-api) to learn more, explore other use cases, and run it yourself.