# AI Jobs Scraper — OpenAI, Anthropic & 36 More, with Salary (`northbell/ai-jobs-scraper`) Actor

AI jobs scraper: every open role at OpenAI, Anthropic, xAI, Databricks, Perplexity, Cursor and 32 more AI companies — team, location, remote flag, salary when published — plus exactly which roles are new or closed since your last run. Public job-board APIs, no login.

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

## Pricing

from $0.40 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## AI Jobs Scraper

Every open role at **38 AI companies** — OpenAI, Anthropic, xAI, Databricks, Scale AI, CoreWeave, Perplexity, Cursor, ElevenLabs, Harvey, Sierra, Cognition and more — in one run, one table. Salary ranges wherever the company publishes them. And from the second run on, **exactly which roles are new and which have closed**.

### Why this list, and why the changes are exact

These companies post their jobs on Greenhouse, Ashby or Lever, whose public APIs return **every open role at once**. So there is no sampling: the Actor compares the role IDs with your previous run — what appears is new, what disappears has closed. The company list was built by testing 70 AI companies against those APIs and keeping the 38 that have a public board.

A test run on 2026-09-25 returned **5,491 open roles in 16 seconds**, **56% with a published salary range**: 1,915 at model labs, 1,992 in infrastructure and tooling, 1,584 at AI product companies.

### Use it for

- **Hiring-trend tracking** — which AI companies are growing which teams, week over week
- **AI job boards and newsletters** — only the new roles, every morning
- **Salary research** — thousands of real published AI pay ranges, by role and location
- **Recruiting and sales signals** — a company opening 40 GPU-infrastructure roles is telling you something

### Output

Every row has `company`, `segment` (lab / infra / app), `title`, `department`, `team`, `location`, `locations`, `remote`, `employmentType`, `salaryMin`, `salaryMax`, `salaryCurrency`, `salaryInterval`, `postedAt`, `isNewSinceLastRun`, `jobUrl`, `applyUrl` (and `description` if you turn it on). Missing values are `null`, never guessed.

Closed roles come back as `type: "closed"` rows. A company that has moved off its board comes back as an `error` row and the run carries on.

### Pricing

**$0.50 per 1,000 roles**, plus $0.01 per run. Closed-role rows and errors are free. All 38 companies without descriptions: about $2.75.

### For AI agents

`{}` returns everything. `{"companies": ["openai"], "titleKeywords": "research"}` narrows it. Rows have `type`: `job`, `closed` or `error`.

### Sister Actors

Any other company: [Greenhouse Jobs Scraper](https://apify.com/northbell/greenhouse-jobs-scraper) · [Lever Jobs Scraper](https://apify.com/northbell/lever-jobs-scraper) · [Ashby Jobs Scraper](https://apify.com/northbell/ashby-jobs-scraper) · [Workday Jobs Scraper](https://apify.com/northbell/workday-jobs-scraper) · [Workable Jobs Scraper](https://apify.com/northbell/workable-jobs-scraper) · [SmartRecruiters Jobs Scraper](https://apify.com/northbell/smartrecruiters-jobs-scraper) · [Recruitee Jobs Scraper](https://apify.com/northbell/recruitee-jobs-scraper) · [Personio Jobs Scraper](https://apify.com/northbell/personio-jobs-scraper) · [Breezy HR Jobs Scraper](https://apify.com/northbell/breezy-hr-jobs-scraper).

# Actor input Schema

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

Leave empty for all 38 AI companies. Or list names, e.g. "openai", "anthropic", "perplexity". For any other company use the Greenhouse, Lever or Ashby Jobs Scraper.

## `segments` (type: `array`):

lab = model builders (OpenAI, Anthropic, xAI…) · infra = compute, data and tooling (Databricks, CoreWeave, Scale AI…) · app = AI products (Perplexity, Cursor, ElevenLabs…).

## `titleKeywords` (type: `string`):

Comma-separated, e.g. "research, engineer".

## `locationKeywords` (type: `string`):

Comma-separated, e.g. "san francisco, london, remote".

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

Keep only roles the board marks as remote.

## `withSalaryOnly` (type: `boolean`):

About half of AI roles publish a range.

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

Off by default: 38 companies is several thousand roles. Turn on if you need the text.

## `trackChanges` (type: `boolean`):

Exact, because each board returns every open role at once. First run marks everything as unknown (null).

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

Stops returning roles from one company after this many. The new/closed comparison still uses the whole board.

## Actor input object example

```json
{
  "companies": [
    "openai",
    "anthropic"
  ],
  "remoteOnly": false,
  "withSalaryOnly": false,
  "includeDescription": false,
  "trackChanges": true,
  "maxJobsPerCompany": 1000
}
```

# Actor output Schema

## `all` (type: `string`):

No description

## `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 = {
    "companies": [
        "openai",
        "anthropic"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("northbell/ai-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 = { "companies": [
        "openai",
        "anthropic",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("northbell/ai-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 '{
  "companies": [
    "openai",
    "anthropic"
  ]
}' |
apify call northbell/ai-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,northbell/ai-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/WQG46c6N88eGxzKI2/builds/a7E77uEhtuahts4lL/openapi.json
