# Career Page Job Monitor (`practical_ophthalmologist_iuq/career-page-job-monitor`) Actor

Track job openings straight from company career pages. Name the companies you care about; it detects whether each uses Greenhouse, Lever, Ashby, Workable, Recruitee or SmartRecruiters and returns every opening in one schema. No proxy, no API key.

- **URL**: https://apify.com/practical\_ophthalmologist\_iuq/career-page-job-monitor.md
- **Developed by:** [Scrappeer](https://apify.com/practical_ophthalmologist_iuq) (community)
- **Categories:** Jobs, Lead generation, Agents
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 job openings

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/platform/actors/running/actors-in-store#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 Job Scraper — Greenhouse, Lever, Ashby, Workable, Recruitee, SmartRecruiters

**You name the companies. It returns their live job openings.**

Give it a list of companies you actually care about. It works out which applicant
tracking system each one uses — Greenhouse, Lever, Ashby, Workable, Recruitee or
SmartRecruiters — reads their official public board API, and returns every opening
in **one normalised schema**.

No proxy. No browser. No API key. Nothing to get blocked.

***

### This is not a job firehose

Most job APIs sell you *everything* — hundreds of thousands of companies — and
leave you to filter down to the handful you care about. That is the right product
if you are building a job board.

It is the wrong product if you already know which companies matter to you.

| | Whole-market job feeds | This Actor |
|---|---|---|
| You get | Every company they index | **The companies you listed** |
| Targeting | Search keywords, hope | You name them |
| Noise | Filter down from 175k+ | There is none to filter |
| Data source | Aggregated | The company's own ATS API |
| Freshness | Whenever they re-crawled | Live, at run time |
| Blocking | Anti-bot, proxies | Public APIs |

If your list is *"our 200 target accounts"*, *"our 40 competitors"*, or *"the 60
companies I would actually work for"*, this is built for you.

***

### Supported platforms

| Platform | Board token is the slug in |
|---|---|
| **Greenhouse** | `boards.greenhouse.io/<token>` · `job-boards.greenhouse.io/<token>` |
| **Lever** | `jobs.lever.co/<token>` |
| **Ashby** | `jobs.ashbyhq.com/<token>` |
| **Workable** | `apply.workable.com/<token>` |
| **Recruitee** | `<token>.recruitee.com` |
| **SmartRecruiters** | `careers.smartrecruiters.com/<token>` |

You do not have to know which one a company uses. Give the plain name and it
tries each platform until it finds the board.

***

### Input

```json
{
  "companies": [
    "stripe",
    "ashby:ramp",
    "https://jobs.lever.co/netflix",
    "https://job-boards.greenhouse.io/anthropic"
  ],
  "titleKeywords": ["engineer", "designer"],
  "excludeKeywords": ["intern"],
  "locations": ["New York", "Remote"],
  "remoteOnly": false,
  "postedWithinDays": 7
}
```

**`companies` accepts anything sensible:**

| You write | It understands |
|---|---|
| `stripe` | auto-detects the platform |
| `greenhouse:stripe` | forces Greenhouse |
| `https://jobs.ashbyhq.com/ramp` | Ashby, token `ramp` |
| `https://apply.workable.com/acme/` | Workable, token `acme` |

| Field | Default | Notes |
|---|---|---|
| `companies` | — | Required. |
| `titleKeywords` | — | Keep only titles containing any of these. |
| `excludeKeywords` | — | Drop titles or departments matching any of these. |
| `locations` | — | Keep only matching locations. |
| `departments` | — | Matches department **or** team. |
| `remoteOnly` | `false` | Remote positions only. |
| `postedWithinDays` | `0` | `0` = no limit. Set `1` for a daily new-jobs feed. |
| `includeDescription` | `false` | Adds full description text. Much larger results. |
| `maxJobsPerCompany` | `0` | `0` = no limit. |
| `concurrency` | `5` | Companies fetched in parallel. |

***

### Output

One item per opening, identical shape no matter which platform it came from:

| Field | Description |
|---|---|
| `companyName`, `boardToken`, `ats` | Who, and which platform it was read from |
| `jobId` | Stable ID on the source platform |
| `title` | Job title |
| `department`, `team` | Org placement, when the platform exposes it |
| `employmentType` | Full-time, contract, intern… |
| `location`, `isRemote`, `workplaceType` | Where the work happens |
| `salary` | Compensation range, when the company publishes it |
| `publishedAt`, `updatedAt` | ISO 8601, normalised across all six platforms |
| `jobUrl`, `applyUrl` | Public posting and application links |
| `description` | Full text, only when requested |

Export as **Excel, CSV, JSON or XML**, or pull it through the API.

Companies whose board cannot be found return one row with an `error` and a hint,
so a bad token never silently vanishes from your results.

***

### What people use it for

- **Sales and lead-gen** — a company that is hiring is a company that is spending.
  Watch your target accounts and catch them the week they start growing a team.
- **Competitive intelligence** — see exactly which roles a rival opened, in which
  city, on which team, at what salary.
- **Recruiting and sourcing** — track where talent demand is moving.
- **Job hunting** — follow the 60 companies you would actually join, filtered to
  your title and location.

#### Daily hiring-signal recipe

Schedule it once a day with `postedWithinDays: 1` and you get a clean feed of
roles opened in the last 24 hours across every company you track. Wire it to
Slack, Google Sheets or your CRM through Apify integrations.

***

### Why it stays cheap and does not break

It reads the **official public board API** each platform already publishes for
their customers' own career sites. That means no proxy fees, no headless browser,
no anti-bot arms race — and no silent data loss when a page layout changes.

Timestamps are normalised to ISO 8601 across all six platforms, so a date filter
behaves the same everywhere. Departments are joined in for Greenhouse, which
omits them from its jobs endpoint. Postings that cannot be read are skipped and
**reported in the log** rather than quietly dropped — and you are not billed for them.

***

### Limits

- Only the six platforms above. Custom in-house career pages are not covered.
- Boards set to private or password-protected are not accessible.
- `department` and `team` are only as good as what the company fills in.
- Salary appears only where the company publishes it.
- SmartRecruiters boards are read up to 2,000 postings per company.

***

### Pricing

Pay per event: a small start fee per run, plus a charge per job returned.
Companies that return no jobs cost only the start fee. Platform usage is
included — you are not billed for compute on top.

***

### Support

Missing a platform, or a company that will not resolve? Open an issue on the
**Issues** tab with the careers URL. New adapters are quick to add.

# Actor input Schema

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

Company board tokens, careers URLs, or ats:token pairs. The Actor auto-detects which ATS each company uses. Examples: stripe / ashby:ramp / https://jobs.lever.co/netflix

## `titleKeywords` (type: `array`):

Keep only jobs whose title contains any of these. Leave empty to keep all.

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

Drop jobs whose title or department matches any of these.

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

Keep only jobs whose location contains any of these.

## `departments` (type: `array`):

Keep only jobs in these departments or teams.

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

Keep only remote positions.

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

Keep only jobs posted in the last N days. 0 means no limit. Useful for daily hiring-signal runs.

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

Adds the full job description as plain text. Makes results much larger.

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

0 means no limit.

## `concurrency` (type: `integer`):

How many companies to fetch in parallel.

## Actor input object example

```json
{
  "companies": [
    "stripe",
    "https://jobs.ashbyhq.com/ramp"
  ],
  "titleKeywords": [
    "engineer",
    "designer"
  ],
  "excludeKeywords": [
    "intern",
    "contract"
  ],
  "locations": [
    "New York",
    "London"
  ],
  "departments": [
    "Engineering",
    "Sales"
  ],
  "remoteOnly": false,
  "postedWithinDays": 0,
  "includeDescription": false,
  "maxJobsPerCompany": 0,
  "concurrency": 5
}
```

# 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",
        "ashby:ramp",
        "https://job-boards.greenhouse.io/anthropic"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("practical_ophthalmologist_iuq/career-page-job-monitor").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",
        "ashby:ramp",
        "https://job-boards.greenhouse.io/anthropic",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("practical_ophthalmologist_iuq/career-page-job-monitor").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 '{
  "companies": [
    "stripe",
    "ashby:ramp",
    "https://job-boards.greenhouse.io/anthropic"
  ]
}' |
apify call practical_ophthalmologist_iuq/career-page-job-monitor --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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