# Workday 招聘职位数据 API:一键抓取全部在招职位

**Use case:** 

输入任意 Workday 招聘网站网址,即可获取全部在招职位的结构化数据:职位名称、工作地点、发布日期、薪资范围和申请链接,支持导出 JSON 和 CSV。按结果计费。

## Input

```json
{
  "startUrls": [
    {
      "url": "https://adobe.wd5.myworkdayjobs.com/external_experienced"
    }
  ],
  "searchText": "",
  "maxJobsPerSite": 300,
  "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.