# Company Job Listings: Greenhouse, Lever, Ashby, Workday & more (`evolve-data/company-jobs`) Actor

All open jobs from company career pages on Greenhouse, Lever, Ashby, Workday, Workable, SmartRecruiters and Recruitee in one normalized format, with salaries, remote flag and full descriptions. Filter by title, location, remote and posting date.

- **URL**: https://apify.com/evolve-data/company-jobs.md
- **Developed by:** [Ahmed Zaky](https://apify.com/evolve-data) (community)
- **Categories:** Jobs, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$1.00 / 1,000 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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

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

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Company Job Listings: Greenhouse, Lever, Ashby, Workday & more

Get **every open job** from any company's careers page, in **one clean format**, no matter which hiring platform it uses:

**Greenhouse · Lever · Ashby · Workday · Workable · SmartRecruiters · Recruitee**

Paste careers page URLs, or just type company names like `stripe` or `notion`, and the job board is found automatically.

### Why this Actor

- **Seven platforms, one schema.** No more separate scrapers per platform with different fields.
- **Uses each platform's official public job board feed**, the same data the company publishes on its careers page. Fast, stable, and it doesn't break when a page is redesigned.
- **Salaries** where the company publishes them (Ashby, Lever, Recruitee), with min, max, currency and interval.
- **Full descriptions** as clean plain text, ready for AI, search or matching.
- **Filters:** title keywords, excluded keywords, locations, remote only, and posted within N days.
- **Company-name lookup:** type `openai` and it checks every platform for you.

### Use cases

- **Job boards and aggregators:** keep listings fresh with a daily schedule and *Posted within = 1*
- **Recruiting and sales intelligence:** see which companies are hiring for what (a hiring signal for outbound)
- **Job seekers and communities:** track target companies and get new roles first
- **Market research:** hiring trends, salary ranges and locations across companies

### Output

```json
{
  "company": "openai",
  "ats": "ashby",
  "companyName": "openai",
  "title": "Research Engineer",
  "department": "Research",
  "location": "San Francisco",
  "remote": false,
  "employmentType": "FullTime",
  "postedAt": "2025-04-05T00:00:00.000Z",
  "salaryMin": 250000,
  "salaryMax": 445000,
  "salaryCurrency": "USD",
  "url": "https://jobs.ashbyhq.com/openai/...",
  "applyUrl": "https://jobs.ashbyhq.com/openai/.../application",
  "description": "About the team..."
}
```

`remote` is `true` or `false` when the platform says so, and `null` when unknown.

### Tips

- **Workday** boards need the careers page URL, e.g. `https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite`.
- If a company name isn't found, paste its careers page URL instead.
- The `SUMMARY` record shows which platform each company uses and how many jobs are open.

### Pricing

Pay per job saved. Set *Max jobs per company* or a maximum cost per run to stay in budget.

Missing a platform or found a company that doesn't work? Open an issue. Issues are answered within 24 hours.

# Actor input Schema

## `companies` (type: `array`):

Careers page URLs on Greenhouse, Lever, Ashby, Workable, SmartRecruiters, Recruitee or Workday, e.g. https://jobs.lever.co/spotify or https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite. You can also type just the company name (e.g. stripe) and the job board is found automatically (not for Workday).

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

Keep jobs whose title contains any of these words, e.g. engineer, sales, marketing.

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

Drop jobs whose title contains any of these words, e.g. intern, senior.

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

Keep jobs whose location contains any of these, e.g. London, Germany, Remote.

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

Keep only jobs marked as remote by the company.

## `postedWithinDays` (type: `integer`):

Keep only jobs posted in the last N days. 0 = any time. Schedule daily with 1 to get only new jobs.

## `includeDescription` (type: `boolean`):

Full job description as plain text. Turn off for faster, lighter runs.

## `maxJobsPerCompany` (type: `integer`):

0 = all open jobs.

## Actor input object example

```json
{
  "companies": [
    "stripe",
    "https://jobs.ashbyhq.com/openai",
    "https://jobs.lever.co/spotify"
  ],
  "keywords": [],
  "excludeKeywords": [],
  "locations": [],
  "remoteOnly": false,
  "postedWithinDays": 0,
  "includeDescription": true,
  "maxJobsPerCompany": 20
}
```

# Actor output Schema

## `jobs` (type: `string`):

Open jobs in one normalized format.

## `summary` (type: `string`):

Job board found per company and companies that could not be found.

# 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 = {
    "companies": [
        "stripe",
        "https://jobs.ashbyhq.com/openai",
        "https://jobs.lever.co/spotify"
    ],
    "maxJobsPerCompany": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("evolve-data/company-jobs").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 = {
    "companies": [
        "stripe",
        "https://jobs.ashbyhq.com/openai",
        "https://jobs.lever.co/spotify",
    ],
    "maxJobsPerCompany": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("evolve-data/company-jobs").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "companies": [
    "stripe",
    "https://jobs.ashbyhq.com/openai",
    "https://jobs.lever.co/spotify"
  ],
  "maxJobsPerCompany": 20
}' |
apify call evolve-data/company-jobs --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,evolve-data/company-jobs"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/j9vZfa6YqUUhg3K8f/builds/aD0G8Wh6ie44saiNE/openapi.json
