SmartRecruiters Jobs Scraper & API
Pricing
from $0.90 / 1,000 results
SmartRecruiters Jobs Scraper & API
Scrape every open job from any company on SmartRecruiters. Give a company ID and get each role with full description, location, department, employment type and apply URL β via the public Posting API. Filter by title, location, remote. Handles huge boards. No proxy. JSON or CSV.
Pricing
from $0.90 / 1,000 results
Rating
0.0
(0)
Developer
Muhamed Didovic
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Share
SmartRecruiters Jobs Scraper π§
Scrape every open job from any company hosted on SmartRecruiters (smartrecruiters.com) β title, full description, location, department, and apply URL β straight from SmartRecruiters's public Posting API. List + per-job detail gives the complete posting, including very large boards. No login, no anti-bot, no browser.

Why use this scraper
- Handles huge boards. SmartRecruiters powers enterprise careers sites with thousands of roles β pagination and per-job detail are handled for you, capped to your maxItems.
- Full job detail, not just titles. Each row carries the entire job:
descriptionHtml+ plain text, location(s), employment type, workplace type, and the apply URL. - Fast and cheap. No proxies required (the API has no anti-bot), so runs are quick and your cost stays low.
- Normalized schema. Output uses a consistent ATS schema shared with our other ATS scrapers (Ashby, Lever, SmartRecruiters, Personio, BambooHR) β write one parser, reuse it across every ATS.
- Built-in filters. Narrow by title, location, department, employment type, remote, or posted date β applied before a row is emitted, so you only pay for matches.
Overview
SmartRecruiters is a widely-used recruiting platform. Large enterprises host their careers on SmartRecruiters at https://careers.smartrecruiters.com/{CompanyId}. This actor reads each company's jobs through SmartRecruiters's public Posting API and emits one clean, normalized row per open job.
Supported inputs
| Input type | Example | Notes |
|---|---|---|
| Company ID | BoschGroup, Equinox, Visa | CASE-SENSITIVE (BoschGroup, not bosch) |
| Careers URL | https://careers.smartrecruiters.com/BoschGroup | The company ID is extracted |
Provide them in Start URLs and/or Organization slugs. Mix as many companies as you like in one run.
Where's the Company ID? It's the segment after
smartrecruiters.com/in the careers URL, and it is case-sensitive.
Use cases
- Job boards & aggregators β ingest fresh, structured roles from many companies.
- Recruiting & sourcing tools β track who's hiring for what.
- Market & talent intelligence β hiring velocity, remote-vs-onsite mix.
- Lead generation β companies actively hiring are buying signals for many B2B products.
- Personal job search β pull every role across your target companies into one sheet.
How it works
- Resolve each input to a SmartRecruiters company ID.
- Paginate
api.smartrecruiters.com/v1/companies/{id}/postings(100/page). - Fetch each job's detail (
/postings/{id}) for the full description β capped tomaxItems, and skipped entirely whenincludeDescriptionis off. - Normalize to a common ATS schema and push one row per job.
Companies are processed in parallel with a sliding-window concurrency cap. No proxy is needed; you can supply one for IP rotation at very large scale.
Input configuration
| Field | Type | Default | Description |
|---|---|---|---|
startUrls | array | β | SmartRecruiters company IDs or careers URLs (strings or {url} objects). |
organizations | array | β | Bare SmartRecruiters company IDs (case-sensitive), e.g. ["BoschGroup","Equinox"]. |
maxItems | integer | 5000 | Max job rows emitted across the whole run. |
maxConcurrency | integer | 10 | How many companies to fetch in parallel. |
titleKeyword | string | β | Keep only jobs whose title contains this. |
location | string | β | Keep only jobs whose location contains this. |
department | string | β | Keep only jobs whose department contains this. |
employmentType | string | β | Keep only this employment type. |
remoteOnly | boolean | false | Keep only remote jobs. |
postedAfter | string | β | Keep only jobs published on/after this date (YYYY-MM-DD). |
includeDescription | boolean | true | Include descriptionHtml + descriptionText. Off skips the per-job detail call entirely β much faster/cheaper for huge boards. |
includeRawJson | boolean | false | Attach the original SmartRecruiters payload under raw. |
proxy | object | β | Optional. Not required (no anti-bot); use only for IP rotation at scale. |
Example input
{"organizations": ["BoschGroup", "Equinox"],"maxItems": 500,"location": "remote"}
Output
One row per open job. Example (trimmed):
{"ats": "smartrecruiters","org": "BoschGroup","company": "Bosch Group","jobId": "744000132064189","globalId": "smartrecruiters:BoschGroup:744000132064189","title": "Purchasing Quality Engineer (Motor)","department": null,"team": "Purchasing","employmentType": "Full-time","workplaceType": "OnSite","isRemote": false,"location": "Shanghai, Shanghai, China","locations": ["Shanghai, Shanghai, China"],"address": { "city": "Shanghai", "country": "China", "lat": 31.2, "long": 121.5 },"descriptionHtml": "<h3>Company Description</h3>β¦","descriptionText": "Company Descriptionβ¦","publishedAt": "2026-06-14T06:00:53.734Z","jobUrl": "https://jobs.smartrecruiters.com/BoschGroup/744000132064189","applyUrl": "https://jobs.smartrecruiters.com/BoschGroup/744000132064189","scrapedAt": "2026-06-14T18:20:00.000Z"}
Key output fields
| Field | Description |
|---|---|
ats | Always "smartrecruiters" β the source platform. |
org | Company board identifier. |
company | Company display name. |
globalId | Stable, unique key ats:org:jobId β use it to dedupe across runs. |
title | Job title. |
department / team | Org grouping as set by the company. |
employmentType | Full-time / Part-time / Intern / Contract / Temporary (as the ATS reports it). |
workplaceType / isRemote | Remote / Hybrid / OnSite + a boolean remote flag. |
location / locations | Primary location + every listed location. |
descriptionHtml / descriptionText | Full job description as HTML and plain text. |
publishedAt | When the role was published (ISO). |
jobUrl / applyUrl | Public posting URL + application URL. |
FAQ
Do I need a proxy? No. SmartRecruiters's Posting API is public with no anti-bot. The proxy field is available only for optional IP rotation at very large scale.
Why two requests per job? The SmartRecruiters list endpoint returns summaries only; the full description lives on each posting's detail endpoint. We fetch detail only up to maxItems, and not at all when includeDescription is off β keeping big-board runs fast and cheap.
Can it discover every company on SmartRecruiters? No β SmartRecruiters has no public directory of all boards (true for every ATS scraper). You supply the companies you care about.
How many jobs per company? Whatever they have open β use maxItems to cap total output and control cost.
How fresh is the data? Live β every run hits SmartRecruiters in real time.
Support
Found a bug or need a field added? Open an issue on the actor's Issues tab in the Apify Console.
Additional services
Need a different ATS or job board? We also build scrapers for Ashby, Greenhouse, Workday, Indeed, LinkedIn, Glassdoor, and many more. Check our Apify Store profile.
Explore more scrapers
- Ashby / Greenhouse / Lever Jobs Scrapers β open roles from those ATS platforms.
- Workday Jobs Scraper β jobs from any Workday career site.
- Indeed / LinkedIn / Glassdoor β the major job boards, fast and structured.
β οΈ Disclaimer
This actor collects only publicly available job-posting data exposed by SmartRecruiters's own public Posting API. It does not access private, authenticated, or personal data, and does not bypass any access control. You are responsible for using the scraped data in compliance with SmartRecruiters's terms, the source companies' terms, and all applicable laws (including GDPR/CCPA). Use the data ethically and lawfully.
SEO Keywords
SmartRecruiters scraper, SmartRecruiters jobs scraper, smartrecruiters.com scraper, SmartRecruiters Posting API, SmartRecruiters ATS scraper, scrape SmartRecruiters jobs, careers.smartrecruiters.com scraper, ATS job scraper, enterprise jobs scraper, job postings API, company careers scraper, hiring data, recruiting data.