# SmartRecruiters Jobs Scraper & API (`camiloop96/smartrecruiters-jobs`) Actor

Extract all job postings from any SmartRecruiters career site via the official public API. Fast, no headless browser, no proxies. Returns a clean normalized schema. Ideal for job boards, ATS aggregators, hiring-signal/sales intel and AI agents.

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

## Pricing

$2.00 / 1,000 job returneds

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 & API 🎯

Extract **all job postings from any SmartRecruiters career site** — fast, reliable, and in a clean normalized format. Powered by the **official SmartRecruiters public API** (no headless browser, no proxies, no anti-bot games), so runs are cheap and stable.

Perfect for **job boards, ATS aggregators, recruitment tools, market research, and AI agents** that need fresh hiring data.

***

### ✨ Why this actor

- **Official API, not scraping** — uses `api.smartrecruiters.com`, so it doesn't break when a website redesigns. Low maintenance, low cost.
- **Normalized output** — every job comes back in the same clean schema, so you can plug it straight into your pipeline (and combine it with our other ATS actors).
- **URL or identifier** — pass a company id (`BoschGroup`) or a full careers URL; the actor auto-detects the company.
- **Pay only for what you get** — billed per job delivered. No subscriptions, no wasted spend.
- **Optional full descriptions** — fetch complete posting text when you need it, skip it when you don't.

### 🚀 Input

| Field | Type | Description |
|---|---|---|
| `companies` | array | SmartRecruiters company identifiers or careers URLs. **Required.** |
| `includeDescription` | boolean | Fetch full description per job (extra API call each). Default `false`. |
| `maxJobsPerCompany` | integer | Cap jobs per company. `0` = no limit. |
| `country` | string | Optional ISO country filter (e.g. `us`, `de`). |

```json
{
  "companies": ["BoschGroup", "Visa", "https://jobs.smartrecruiters.com/Ubisoft"],
  "includeDescription": false,
  "maxJobsPerCompany": 0,
  "country": ""
}
```

### 📤 Output

Each job is a normalized record:

```json
{
  "id": "744000129971988",
  "source": "smartrecruiters",
  "company": "Visa",
  "companyId": "Visa",
  "title": "Director",
  "department": "Cyber Security",
  "location": "Bengaluru, KA, India",
  "city": "Bengaluru",
  "region": "KA",
  "country": "in",
  "remote": false,
  "employmentType": "Full-time",
  "postedAt": "2026-06-03T11:08:12.368Z",
  "url": "https://jobs.smartrecruiters.com/Visa/744000129971988",
  "applyUrl": null,
  "description": null,
  "raw": { "...": "untouched original payload (lat/long, customFields, etc.)" }
}
```

> Need a field SmartRecruiters returns but we didn't surface? It's all in `raw`.

### 💡 Use cases

- **Job boards** — fill your site with fresh postings from hundreds of companies.
- **ATS aggregators** — one schema across SmartRecruiters, Lever, Ashby and more (see our other actors).
- **Hiring-signal & sales intel** — track which companies are hiring, in which departments, where.
- **AI agents / RAG** — feed structured, current job data to your LLM workflows.

### 💸 Pricing

**Pay-per-event:** you're charged per job returned. Listing jobs is cheap; turn on `includeDescription` only when you need full text. No monthly fee.

### ❓ FAQ

**Where do I find a company's identifier?** It's in its SmartRecruiters careers URL: `jobs.smartrecruiters.com/<identifier>`. You can also paste the full URL.

**Does it need an API key or login?** No. It uses public endpoints.

**How fresh is the data?** Live — every run hits the API in real time.

**A company returned 0 jobs?** It either has no open postings or the identifier is wrong. Paste the full careers URL to be safe.

***

Part of a family of ATS job actors. Need another ATS (Lever, Ashby, Greenhouse, Recruitee, Workable)? Check our other actors or get in touch.

# Actor input Schema

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

SmartRecruiters company identifiers or career-site URLs. Examples: "BoschGroup", "Visa", or "https://jobs.smartrecruiters.com/BoschGroup".

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

Fetch the full description per job. Adds 1 API call per job (slower, higher cost) but returns the complete posting text.

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

Limit the number of jobs fetched per company. 0 = no limit.

## `country` (type: `string`):

Optional ISO country code to filter postings, e.g. "us", "de". Leave empty for all countries.

## Actor input object example

```json
{
  "companies": [
    "BoschGroup"
  ],
  "includeDescription": false,
  "maxJobsPerCompany": 0
}
```

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

// Run the Actor and wait for it to finish
const run = await client.actor("camiloop96/smartrecruiters-jobs").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": ["BoschGroup"] }

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

```

## MCP server setup

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

```

## OpenAPI specification

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