# SmartRecruiters Jobs Scraper (`straightforward_hydra/smartrecruiters-jobs-scraper`) Actor

All live jobs from any company's SmartRecruiters careers page — title, department, location, remote, apply link. No key.

- **URL**: https://apify.com/straightforward\_hydra/smartrecruiters-jobs-scraper.md
- **Developed by:** [Dev D](https://apify.com/straightforward_hydra) (community)
- **Categories:** Automation, Jobs, Developer tools
- **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 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/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 💼

**Pull all live jobs from any company's SmartRecruiters careers page — straight from SmartRecruiters' public API. No API key, no proxy.**

Give it one or more company identifiers and get every open role: title, department, function, industry, employment type, experience level, location (with remote/hybrid flags and coordinates), and the direct apply link — plus optional full descriptions.

Perfect for **job boards & aggregators, recruiters & sourcers, hiring/market intelligence, and talent CRMs**.

> Uses SmartRecruiters' public postings API — no key, no login. Very low maintenance.

***

### Features

- ✅ **No API key, no proxy** — official public SmartRecruiters endpoint.
- ✅ **Rich fields** — department, function, industry, employment type, experience level, geo.
- ✅ **Remote/hybrid flags** + lat/long.
- ✅ **Optional full descriptions** (one extra call per job).
- ✅ **Filters** — title keyword, department, location, remote-only.
- ✅ **Multi-company** — scrape a whole list in one run.

***

### Input

| Field | Description |
|---|---|
| **Company identifiers** | The name in `jobs.smartrecruiters.com/<name>` (e.g. `Visa`, `Bosch`, `IKEA`). |
| **Title keyword** | Only jobs whose title contains this text. |
| **Department** | Filter by department. |
| **Location** | Filter by location text. |
| **Remote only** | Only remote jobs. |
| **Include full description** | Fetch each job's full description. |
| **Max results** | Cap across all companies. |

> **Finding the identifier:** it's the exact (case-sensitive) name in the careers URL — `jobs.smartrecruiters.com/<Identifier>`.

#### Example — a company's engineering jobs

```json
{
  "companies": ["Visa"],
  "titleKeyword": "engineer"
}
```

#### Example — several companies with full descriptions

```json
{
  "companies": ["Visa", "Bosch"],
  "includeDescription": true
}
```

### Output

```json
{
  "company": "Visa",
  "company_identifier": "Visa",
  "id": "744000133907678",
  "title": "Sr. Manager",
  "ref_number": "REF97395W",
  "department": "Software Development/Engineering",
  "function": "Engineering",
  "industry": "Information Technology And Services",
  "employment_type": "Full-time",
  "experience_level": "Mid-Senior Level",
  "city": "Austin",
  "region": "TX",
  "country": "US",
  "remote": false,
  "hybrid": false,
  "full_location": "Austin, TX, United States",
  "released_date": "2026-06-24T10:00:11Z",
  "url": "https://jobs.smartrecruiters.com/Visa/744000133907678",
  "description": null
}
```

`description` is populated when **Include full description** is enabled.

### Run it on a schedule

Track a set of companies' boards daily to catch new postings — pipe to a sheet, ATS, Slack or a webhook.

### Notes & limitations

- Company identifiers are **case-sensitive** and must match the careers-page URL exactly; a company with no open roles returns nothing (handled gracefully).
- Public job-posting data. Data source: SmartRecruiters.
- Sibling actors exist for Greenhouse, Lever, Ashby and Workable.

***

#### Keywords

SmartRecruiters, jobs, ATS, job scraper, careers, job board, recruiting, hiring, talent sourcing, job postings, applicant tracking, remote jobs, employment, vacancies, job listings, recruitment data, hiring intelligence, apply, job feed, HR tech.

# Actor input Schema

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

SmartRecruiters company identifiers — the name in jobs.smartrecruiters.com/<name> (e.g. "Visa", "Bosch", "IKEA"). One per company.

## `titleKeyword` (type: `string`):

Only jobs whose title contains this text, e.g. "engineer", "manager".

## `department` (type: `string`):

Filter by department, e.g. "Engineering", "Sales".

## `location` (type: `string`):

Filter by location text (city / region / country), e.g. "United States", "Austin".

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

Only remote jobs.

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

Fetch each job's full description (adds one API call per job — slower).

## `maxResults` (type: `integer`):

Maximum number of jobs to return across all companies.

## Actor input object example

```json
{
  "companies": [
    "Visa"
  ],
  "remoteOnly": false,
  "includeDescription": false,
  "maxResults": 100000
}
```

# 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"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("straightforward_hydra/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"] }

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

```

## MCP server setup

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

```

## OpenAPI specification

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