# SmartRecruiters Jobs Scraper - Multi-Company Job Listings (`gettingtechnicl/smartrecruiters-jobs-scraper`) Actor

Scrape live job postings from any company hiring on SmartRecruiters - across many companies in one run. Clean structured records (job title, company, location, department, employment type, salary and the full description), exported as JSON, CSV or Excel. No login, no API key.

- **URL**: https://apify.com/gettingtechnicl/smartrecruiters-jobs-scraper.md
- **Developed by:** [Terry Gluff](https://apify.com/gettingtechnicl) (community)
- **Categories:** Jobs, Business
- **Stats:** 1 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 verified record extracteds

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

## SmartRecruiters Jobs Scraper - Multi-Company Job Listings

**Scrape live job postings from any company that hires on SmartRecruiters** - across as many companies as you want, in a single run. No login, no API key, no fragile HTML scraping: this Actor reads SmartRecruiters's public job feed and returns clean, structured, export-ready records.

*Also known as: SmartRecruiters jobs scraper, SmartRecruiters ATS scraper, scrape SmartRecruiters jobs, SmartRecruiters job board API, jobs data, hiring data, recruiting data, job listings API.*

### What you get

One row per live job posting, each with the full description, ready to export as JSON, CSV or Excel:

`id`, `name`, `uuid`, `jobAdId`, `defaultJobAd`, `refNumber`, `company`, `releasedDate`, `location_city`, `location_region`, `location_country`, `location_remote`

### Example input

```json
{
  "companies": [
    "Visa",
    "Bosch",
    "Square",
    "IKEA"
  ],
  "include_full_description": true,
  "max_items": 500
}
```

### What you can do with it

- **Recruiting and sourcing** - pull every open role across a set of target companies into one sheet.
- **Talent-market and salary research** - track who is hiring, for what, and where, over time.
- **Lead generation** - find companies actively hiring for roles your product or service supports.
- **Competitive hiring intelligence** - monitor competitor openings, teams and locations.
- **Build a niche job board** - power a curated, always-fresh listings feed.

### Input options

- **companies** - SmartRecruiters company identifiers, e.g. Visa
- **include\_full\_description** - include the full description text (default: true)
- **max\_items** - cap on total results
- **search** - keyword filter on title / role / department
- **location\_contains** - filter by location text

### How to find your companies

the company identifier in careers.smartrecruiters.com/<id>

### Pricing

Pay per result - you are charged only for records actually returned. No monthly fee, and no charge for empty runs.

### FAQ

**Do I need an API key or login?** No - it reads SmartRecruiters's public job feed.

**How many companies can I scrape at once?** As many as you like - just add them to the `companies` list.

**What export formats are supported?** JSON, CSV, Excel, or the Apify API and webhooks.

# Actor input Schema

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

SmartRecruiters company identifiers, e.g. Visa

## `include_full_description` (type: `boolean`):

Include the full description text per record

## `max_items` (type: `integer`):

Maximum total records to return

## `search` (type: `string`):

Only include records whose title/role/department contains this text

## `location_contains` (type: `string`):

Only include records whose location contains this text

## Actor input object example

```json
{
  "companies": [
    "Visa",
    "Bosch",
    "Square",
    "IKEA"
  ],
  "include_full_description": true,
  "max_items": 1000,
  "search": "",
  "location_contains": ""
}
```

# 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": [
        "Visa",
        "Bosch",
        "Square",
        "IKEA"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("gettingtechnicl/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 = { "companies": [
        "Visa",
        "Bosch",
        "Square",
        "IKEA",
    ] }

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

```

## MCP server setup

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