# Workable Smartrecruiters Jobs Scraper (`smorgi_apps/workable-smartrecruiters-jobs-scraper`) Actor

- **URL**: https://apify.com/smorgi\_apps/workable-smartrecruiters-jobs-scraper.md
- **Developed by:** [Smorgi Apps](https://apify.com/smorgi_apps) (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

from $1.00 / 1,000 job postings

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?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **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 usage examples, see the [API](#api) section below.

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

# README

## ATS Jobs Scraper: Workday, Workable, SmartRecruiters — Pay Per Result

Scrape jobs **directly from company career sites** running on the three biggest ATS platforms — **Workday, Workable, and SmartRecruiters** — in one Actor. Fresher than job boards (postings appear here first), no LinkedIn/Indeed anti-bot wars, and one unified schema across all sources. Fast HTTP, no browser.

**Use cases:** recruiting intelligence, job-board aggregation, sales signals (who's hiring = who's buying), labor-market research, competitor headcount tracking.

### What you get

Each dataset item is one job posting with a unified schema across all three platforms:

`source, jobId, title, location, department, url, boardToken, scrapedAt`

- **Workday**: any `*.wdX.myworkdayjobs.com` career site (most Fortune 500 companies).
- **Workable**: account slugs or `apply.workable.com` URLs.
- **SmartRecruiters**: company identifiers from `jobs.smartrecruiters.com` or careers pages.

Batch as many boards as you want; duplicates are removed across boards; filter by job title substring.

### Pricing

| Event | Price |
|---|---|
| Job delivered | **$1.00 per 1,000** |
| Actor start | $0.00005 per GB-start |

Empty boards, 404s, and filtered-out jobs are **never charged**.

### Limitations (honest)

- You provide the list of company boards — this Actor does not discover companies for you (pair it with your CRM or a directory scrape).
- Job descriptions are not fetched (keeps runs 10x cheaper); the `url` field links to the full posting.
- Salary data appears only where the ATS exposes it publicly (rare).

### How to use

1. Paste career-site URLs or slugs for any mix of Workday, Workable, and SmartRecruiters boards.
2. Optionally set a title filter (e.g. "engineer") and per-board cap.
3. Run — jobs stream into the dataset. Export JSON/CSV or fetch via [Apify API](https://docs.apify.com/api/v2).

### Related Actors

- [Greenhouse Jobs](https://apify.com/smorgi_apps/greenhouse-jobs-scraper)
- [Lever + Ashby Jobs](https://apify.com/smorgi_apps/lever-ashby-jobs-scraper)
- [RemoteOK Jobs](https://apify.com/smorgi_apps/remoteok-jobs-scraper)
- [ZipRecruiter Jobs](https://apify.com/smorgi_apps/ziprecruiter-jobs-scraper)

***

*Keywords: workday scraper, workable jobs, smartrecruiters scraper, ats jobs, career site scraper, job aggregator, hiring signals, recruiting data*

# Actor input Schema

## `workableAccounts` (type: `array`):

Workable account slugs (e.g. huggingface) or apply.workable.com URLs.

## `smartRecruitersCompanies` (type: `array`):

SmartRecruiters company identifiers (e.g. SmartRecruiters).

## `workdayUrls` (type: `array`):

Workday career-site URLs, e.g. https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite

## `maxItemsPerBoard` (type: `integer`):

Cap after title filter per board (Workable account, SmartRecruiters company, or Workday site).

## `titleContains` (type: `string`):

Optional case-insensitive title substring filter.

## `dedupeAcrossBoards` (type: `boolean`):

Skip duplicate job ids already returned in this run.

## `requestDelayMs` (type: `integer`):

Throttle between board API calls.

## `proxyConfiguration` (type: `object`):

Optional.

## Actor input object example

```json
{
  "workableAccounts": [
    "huggingface",
    "https://apply.workable.com/pearltalent/"
  ],
  "smartRecruitersCompanies": [
    "SmartRecruiters"
  ],
  "workdayUrls": [
    "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite"
  ],
  "maxItemsPerBoard": 50,
  "titleContains": "",
  "dedupeAcrossBoards": true,
  "requestDelayMs": 400,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

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

No description

# 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 = {
    "workableAccounts": [
        "huggingface",
        "https://apply.workable.com/pearltalent/"
    ],
    "smartRecruitersCompanies": [
        "SmartRecruiters"
    ],
    "workdayUrls": [
        "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite"
    ],
    "maxItemsPerBoard": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("smorgi_apps/workable-smartrecruiters-jobs-scraper").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 = {
    "workableAccounts": [
        "huggingface",
        "https://apply.workable.com/pearltalent/",
    ],
    "smartRecruitersCompanies": ["SmartRecruiters"],
    "workdayUrls": ["https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite"],
    "maxItemsPerBoard": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("smorgi_apps/workable-smartrecruiters-jobs-scraper").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 '{
  "workableAccounts": [
    "huggingface",
    "https://apply.workable.com/pearltalent/"
  ],
  "smartRecruitersCompanies": [
    "SmartRecruiters"
  ],
  "workdayUrls": [
    "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite"
  ],
  "maxItemsPerBoard": 50
}' |
apify call smorgi_apps/workable-smartrecruiters-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,smorgi_apps/workable-smartrecruiters-jobs-scraper"
        }
    }
}

```

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/AnR4e7WOzjtR3qFua/builds/jrywDlTIb6CNygR0m/openapi.json
