# Career Scraper Plus (`canadesk/career-scraper-plus`) Actor

Collect Jobs from Greenhouse, Lever, Personio, Recruitee, SmartRecruiters, Workable and Workday in one go. It's fast and costs little.

- **URL**: https://apify.com/canadesk/career-scraper-plus.md
- **Developed by:** [Canadesk Support](https://apify.com/canadesk) (community)
- **Categories:** Jobs, Lead generation
- **Stats:** 19 total users, 1 monthly users, 96.7% runs succeeded, 10 bookmarks
- **User rating**: No ratings yet

## Pricing

$20.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#rental-actors

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

🛑 For optimal performance, use the Custom query Input. Otherwise, only enable the least amount of providers required.

⭐ Experimental feature from Build 2.0 - You can fetch jobs descriptions (except Workday) by enabling Parameter "Fetch all details".

## Features

Returns a list of postings (open jobs) for each company.

Compatible providers: SmartRecruiters, Greenhouse, Lever, Personio (beta), Workable, Recruitee, Workday (beta).

**\[Input - Using Custom query]**

The Custom query is a JSON Object linking the target domain with its known provider (always lower case)

Expected format:

```
{
    "ubisoft2": "smartrecruiters",
    "pokemoncareers": "greenhouse",
    "wealthsimple": "lever",
    "rocycle": "personio",
    "bunq": "recruitee",
    "ryanair": "workable",
    "https://zoom.wd5.myworkdayjobs.com/Zoom": "workday"
}
```

Expected format for each provider:

- SmartRecruiters: Path. E.g., "ubisoft2" from https://careers.smartrecruiters.com/Ubisoft2/

- Greenhouse: Subdomain. E.g., "pokemoncareers" from https://boards.greenhouse.io/pokemoncareers/

- Lever: Path. E.g., "wealthsimple" from https://jobs.lever.co/wealthsimple/

- Personio: Subdomain. E.g., "phorest" from https://phorest.jobs.personio.com/

- Recruitee: Subdomain. E.g., "bunq" from https://bunq.recruitee.com/

- Workable: Path. E.g., "ryanair" from https://apply.workable.com/ryanair/

- Workday: Full URL. E.g., "https://zoom.wd5.myworkdayjobs.com/Zoom"

**\[Input - Using Domains]**

This can be used for provider discovery. First, enable each provider individually (e.g., SmartRecruiters).

Then, based on the Domains Input, each element of the array will be run against all providers until a match is found.

**\[Output]**

```
{
    "department": string,
    "url": string,
    "id": string,
    "title": string,
    "location": string,
    "remote": boolean,
    "updatedAt": date,
    "type": string,
    "experience": string,
    "details": object   // 💡 Raw data! It's different for each provider, but always includes a field "description"
}
```

## Timing

Providers have different response times and pagination settings.

You can customize the following parameters to optimize the job:

- Maximum: The more results you need, the longer the run will be. Only compatible with SmartRecruiters, Workable and Workday.

- Timeout: The higher the timeout is, the higher chances the request has to succeed.

- Delay: The lower the delay is, the faster the run will be but you may get blocked.

- Proxy: The closer the location to the provider's server, the faster the run will be.

We do not recommend fetching a very high volume of jobs in one go. Your proxy location may also cause slowdowns.

### How it works

1. Create a Custom Query, or select the providers and domains.

2. Set the crawler settings.

3. Run it! 🎉

### Support

Always use a proxy, and make sure to wait enough (Delay Input) between requests!

Open a new issue or contact support.

Cheers!

# Actor input Schema

## `customquery` (type: `object`):

Overrides Providers and Domains. See documentation.

## `smartrecruiters` (type: `boolean`):

No description

## `greenhouse` (type: `boolean`):

No description

## `lever` (type: `boolean`):

No description

## `personio` (type: `boolean`):

No description

## `recruitee` (type: `boolean`):

No description

## `workable` (type: `boolean`):

No description

## `workday` (type: `boolean`):

No description

## `query` (type: `array`):

Domains to collect data from.

## `details` (type: `string`):

Collects raw data (except for Workday). Significantly slower!

## `maximum` (type: `integer`):

Per source. Some providers may ignore this setting.

## `timeout` (type: `integer`):

In seconds. Per request.

## `delay` (type: `integer`):

Ins seconds. Waiting time between requests.

## `proxy` (type: `object`):

Select proxies to be used by your crawler.

## Actor input object example

```json
{
  "customquery": {
    "ubisoft2": "smartrecruiters",
    "pokemoncareers": "greenhouse",
    "wealthsimple": "lever",
    "rocycle": "personio",
    "bunq": "recruitee",
    "ryanair": "workable",
    "https://zoom.wd5.myworkdayjobs.com/Zoom": "workday"
  },
  "smartrecruiters": true,
  "greenhouse": true,
  "lever": true,
  "personio": true,
  "recruitee": true,
  "workable": true,
  "workday": true,
  "query": [
    "ubisoft2",
    "pokemoncareers",
    "wealthsimple",
    "rocycle",
    "bunq",
    "ryanair",
    "https://zoom.wd5.myworkdayjobs.com/Zoom"
  ],
  "details": "No",
  "maximum": 10,
  "timeout": 25,
  "delay": 5,
  "proxy": {
    "useApifyProxy": true
  }
}
```

# 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 = {
    "customquery": {
        "ubisoft2": "smartrecruiters",
        "pokemoncareers": "greenhouse",
        "wealthsimple": "lever",
        "rocycle": "personio",
        "bunq": "recruitee",
        "ryanair": "workable",
        "https://zoom.wd5.myworkdayjobs.com/Zoom": "workday"
    },
    "query": [
        "ubisoft2",
        "pokemoncareers",
        "wealthsimple",
        "rocycle",
        "bunq",
        "ryanair",
        "https://zoom.wd5.myworkdayjobs.com/Zoom"
    ],
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("canadesk/career-scraper-plus").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 = {
    "customquery": {
        "ubisoft2": "smartrecruiters",
        "pokemoncareers": "greenhouse",
        "wealthsimple": "lever",
        "rocycle": "personio",
        "bunq": "recruitee",
        "ryanair": "workable",
        "https://zoom.wd5.myworkdayjobs.com/Zoom": "workday",
    },
    "query": [
        "ubisoft2",
        "pokemoncareers",
        "wealthsimple",
        "rocycle",
        "bunq",
        "ryanair",
        "https://zoom.wd5.myworkdayjobs.com/Zoom",
    ],
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("canadesk/career-scraper-plus").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "customquery": {
    "ubisoft2": "smartrecruiters",
    "pokemoncareers": "greenhouse",
    "wealthsimple": "lever",
    "rocycle": "personio",
    "bunq": "recruitee",
    "ryanair": "workable",
    "https://zoom.wd5.myworkdayjobs.com/Zoom": "workday"
  },
  "query": [
    "ubisoft2",
    "pokemoncareers",
    "wealthsimple",
    "rocycle",
    "bunq",
    "ryanair",
    "https://zoom.wd5.myworkdayjobs.com/Zoom"
  ],
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call canadesk/career-scraper-plus --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=canadesk/career-scraper-plus",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/8d7qNCKVcOhIALFgO/builds/yFqAZs3bVaPKd28WW/openapi.json
