# Build a List of Companies Using Workday

**Use case:** 

Enumerate companies using Workday in bulk. Get each company tenant, careers URL, jobs API URL, and live open-role count as structured JSON.

## Input

```json
{
  "companies": [
    "nvidia",
    "kla"
  ],
  "discoverAll": true,
  "maxResults": 50,
  "verifyLive": true,
  "includeInactive": false,
  "crawlDepth": 2
}
```

## Output

```json
{
  "tenant": {
    "label": "Tenant",
    "format": "string"
  },
  "companyName": {
    "label": "Company Name",
    "format": "string"
  },
  "datacenter": {
    "label": "Datacenter",
    "format": "string"
  },
  "siteSlug": {
    "label": "Site Slug",
    "format": "string"
  },
  "totalJobs": {
    "label": "Open Jobs",
    "format": "integer"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "careersUrl": {
    "label": "Careers URL",
    "format": "string"
  },
  "apiUrl": {
    "label": "Jobs API URL",
    "format": "string"
  },
  "slugSource": {
    "label": "Slug Source",
    "format": "string"
  },
  "discoveredAt": {
    "label": "Discovered At",
    "format": "string"
  }
}
```

## About this Actor

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