# BambooHR Jobs Scraper — Any Company Careers (No Key) (`ninhothedev/bamboohr-jobs-scraper`) Actor

$0.5/1K 🔥 Fast BambooHR jobs scraper! Pull ANY company's careers list — title, department, location, remote & link. No key. JSON, CSV, Excel or API in seconds. Perfect for recruiting & hiring intel ⚡

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

## Pricing

from $0.50 / 1,000 results

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

## BambooHR Jobs Scraper — Any Company Careers (No API Key)

Scrape **any company's public BambooHR careers page** into clean, structured JSON. Point the actor at one or more BambooHR subdomains and get every open role — **title, department, location, remote flag, employment type, posted date, apply link** and (optionally) the **full job description** — with no login, no API key and no browser automation.

BambooHR is one of the most widely used ATS/HR platforms among small and mid‑sized companies. Thousands of them host their careers page at `https://{company}.bamboohr.com/careers`. This actor reads the same public JSON that page uses, so results are fast, accurate and datacenter‑proxy friendly.

> ⚡ **Datacenter‑friendly** — no residential proxies required. Clean public JSON, no key.

***

### What you get per job

| Field | Description |
|---|---|
| `company` | BambooHR subdomain the job came from |
| `title` | Job title (`jobOpeningName`) |
| `department` | Department label |
| `employment_type` | e.g. Full‑Time, FTE, Contract |
| `location` | City, state, country (assembled) |
| `remote` | Remote flag (`true`/`false`/`null`) |
| `url` | Direct apply/detail link |
| `posted_at` | Posted date (ISO‑8601 when parseable) |
| `description` | Full description, HTML‑stripped, capped 5000 chars (only when `fetchDescription` is on) |
| `source` | Always `bamboohr` |
| `job_id` | BambooHR job opening id |
| `scraped_at` | UTC timestamp of the run |

***

### Input

```json
{
  "mode": "jobs",
  "companies": ["structuretx", "itmpowerplc", "ott", "pegllc", "paybyphone"],
  "fetchDescription": false,
  "maxItems": 200
}
```

- **companies** — list of BambooHR subdomains (see below on how to find one). Companies not hosted on BambooHR are skipped with a warning.
- **fetchDescription** — set `true` to also pull each job's full description (one extra request per job).
- **maxItems** — cap on total jobs across all companies (default 200, max 2000).

### How to find a company's BambooHR subdomain

1. Open the company's careers/jobs page.
2. If the URL looks like `https://acme.bamboohr.com/careers`, the subdomain is **`acme`**.
3. Some companies embed BambooHR — right‑click → *View Page Source* and search for `bamboohr.com`; the host before `.bamboohr.com` is the subdomain.
4. Enter just that subdomain (e.g. `acme`) — not the full URL.

If a subdomain returns an HTML marketing page instead of JSON, the company is **not** hosted on BambooHR and will be skipped.

***

### Pricing

Roughly **~$1 per 1,000 jobs** scraped — pay‑per‑result, cheap enough to run across hundreds of companies. Enabling `fetchDescription` adds one request per job and increases cost/time.

### Use cases

- **Recruiting & sourcing** — monitor competitor and target‑company hiring in real time.
- **Hiring intelligence** — track headcount growth, department expansion and location trends.
- **ATS / job aggregation** — feed a job board or internal dataset from many BambooHR companies at once.
- **Sales & market research** — spot companies scaling a team (e.g. hiring RevOps → buying signal).

### Output example

```json
{
  "company": "structuretx",
  "title": "Associate Director, Drug Substance",
  "department": "Technical Operations",
  "employment_type": "FTE",
  "location": "Shanghai, Pudong District",
  "remote": null,
  "url": "https://structuretx.bamboohr.com/careers/333",
  "posted_at": "2026-01-28",
  "description": null,
  "source": "bamboohr",
  "job_id": "333",
  "scraped_at": "2026-07-20T14:12:00+00:00"
}
```

***

### Related actors by the same author

- [Ashby Jobs Scraper](https://apify.com/ninhothedev/ashby-jobs-scraper)
- [Workable Jobs Scraper](https://apify.com/ninhothedev/workable-jobs-scraper)
- [SmartRecruiters Jobs Scraper](https://apify.com/ninhothedev/smartrecruiters-jobs-scraper)
- [The Muse Jobs Scraper](https://apify.com/ninhothedev/muse-jobs-scraper)

### Keywords

bamboohr scraper, bamboohr jobs, bamboohr careers api, ats scraper, job scraper, careers scraper, hiring data, recruiting data, job listings, jobOpeningName, company jobs feed, hiring intelligence, sourcing tool, no api key jobs scraper

### Disclaimer

This actor collects only publicly available job‑posting data and adds no personal data. Use responsibly and in line with the BambooHR terms and applicable laws.

# Actor input Schema

## `mode` (type: `string`):

What to scrape. 'jobs' fetches the careers list for each company (and optional descriptions).

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

BambooHR careers subdomains to scrape, one per item. For a page at https://acme.bamboohr.com/careers you enter 'acme'. Only companies actually hosted on BambooHR return data; others are skipped with a warning. Find a company's subdomain by opening its careers page and reading the {subdomain}.bamboohr.com host.

## `fetchDescription` (type: `boolean`):

If enabled, makes one extra request per job to pull the full job description (HTML stripped, capped at 5000 chars) and posted date. Slower and more expensive.

## `maxItems` (type: `integer`):

Maximum total jobs to scrape across all companies. Keeps runs cheap and predictable.

## Actor input object example

```json
{
  "mode": "jobs",
  "companies": [
    "structuretx",
    "itmpowerplc",
    "ott",
    "pegllc",
    "paybyphone",
    "hmd",
    "enghouse"
  ],
  "fetchDescription": false,
  "maxItems": 200
}
```

# 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": [
        "structuretx",
        "itmpowerplc",
        "ott",
        "pegllc",
        "paybyphone",
        "hmd",
        "enghouse"
    ],
    "maxItems": 200
};

// Run the Actor and wait for it to finish
const run = await client.actor("ninhothedev/bamboohr-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": [
        "structuretx",
        "itmpowerplc",
        "ott",
        "pegllc",
        "paybyphone",
        "hmd",
        "enghouse",
    ],
    "maxItems": 200,
}

# Run the Actor and wait for it to finish
run = client.actor("ninhothedev/bamboohr-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": [
    "structuretx",
    "itmpowerplc",
    "ott",
    "pegllc",
    "paybyphone",
    "hmd",
    "enghouse"
  ],
  "maxItems": 200
}' |
apify call ninhothedev/bamboohr-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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