Discover/BambooHR API
live

BambooHR APIjobbatical.bamboohr.com

Retrieve job application form structure from any BambooHR careers site. Get sections, fields, requirements, and custom questions for any job opening by ID.

Endpoint health
verified 4h ago
get_application_form
1/1 passing latest checkself-healing
Endpoints
1
Updated
5h ago

What is the BambooHR API?

The BambooHR Job Application Form API exposes 1 endpoint — get_application_form — that returns the complete application form definition for any public BambooHR job opening. A single call yields 9 top-level response fields including the form's full section breakdown (personal information, profile, details, EEO, and other), field-level metadata such as labels and required flags, employer-specific custom questions, and core job metadata like title, department, and employment type.

This call costs1 credit / call— charged only on success
Try it
Numeric job opening id as it appears in the careers URL <company>.bamboohr.com/careers/<job_id>.
The employer's BambooHR careers subdomain, i.e. the <company> part of <company>.bamboohr.com/careers (lowercase letters, digits, hyphens).
api.parse.bot/scraper/a9c22b87-68ea-4ee6-9a49-f27377ffe9de/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a9c22b87-68ea-4ee6-9a49-f27377ffe9de/get_application_form?job_id=65&company=jobbatical' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalmissing one? ·

Returns the application form for one BambooHR job opening in a single round trip: job summary (title, status, department, employment type, public URL) and the form fields grouped into sections as laid out on the apply page — personal_information (name, email, phone, address, city, state, ZIP, country), profile (resume, date available, desired pay), details (website, LinkedIn URL) — plus eeo (self-identification fields when the employer enables them, otherwise empty), other (any field the site adds outside these groups), and custom_questions (employer-specific questions, empty when none are configured). Each field carries its wire key, display label, whether it is required, and an options list for select fields (country lists all countries by id; state is empty until a country is chosen and is returned as given). A job id that does not exist on the company's careers site yields a stale_input (input_not_found) error.

Input
ParamTypeDescription
job_idrequiredstringNumeric job opening id as it appears in the careers URL <company>.bamboohr.com/careers/<job_id>.
companyrequiredstringThe employer's BambooHR careers subdomain, i.e. the <company> part of <company>.bamboohr.com/careers (lowercase letters, digits, hyphens).
Response
{
  "type": "object",
  "fields": {
    "job_id": "string, the requested job opening id",
    "company": "string, the requested careers subdomain",
    "job_url": "string, public URL of the job opening",
    "sections": "object with keys personal_information, profile, details, eeo, other; each an array of field objects {key, label, required, options} where options is an array of {id, label} for select fields or null",
    "job_title": "string, job opening name",
    "department": "string or null, department label",
    "job_status": "string, e.g. Open",
    "employment_type": "string or null, employment status label such as Full-Time",
    "custom_questions": "array of employer-specific custom question objects as provided by the site (empty when none)"
  },
  "sample": {
    "data": {
      "job_id": "65",
      "company": "jobbatical",
      "job_url": "https://jobbatical.bamboohr.com/careers/65",
      "sections": {
        "eeo": [],
        "other": [],
        "details": [
          {
            "key": "websiteUrl",
            "label": "Website, Blog or Portfolio",
            "options": null,
            "required": false
          },
          {
            "key": "linkedinUrl",
            "label": "LinkedIn URL",
            "options": null,
            "required": false
          }
        ],
        "profile": [
          {
            "key": "resumeFileId",
            "label": "Resume",
            "options": null,
            "required": true
          },
          {
            "key": "dateAvailable",
            "label": "Date Available",
            "options": null,
            "required": false
          },
          {
            "key": "desiredPay",
            "label": "Desired Pay",
            "options": null,
            "required": false
          }
        ],
        "personal_information": [
          {
            "key": "firstName",
            "label": "First Name",
            "options": null,
            "required": true
          },
          {
            "key": "countryId",
            "label": "Country",
            "options": [
              {
                "id": "1",
                "label": "United States"
              },
              {
                "id": "82",
                "label": "Germany"
              }
            ],
            "required": true
          }
        ]
      },
      "job_title": "Account Executive - German Market (DACH)",
      "department": "Revenue Team",
      "job_status": "Open",
      "employment_type": "Full-Time",
      "custom_questions": []
    },
    "status": "success"
  }
}

About the BambooHR API

What the API Returns

The get_application_form endpoint takes two required parameters: job_id (the numeric ID from the careers URL path) and company (the employer's BambooHR subdomain). It returns a single structured object covering both the job's metadata and the full apply form layout. The job metadata fields include job_title, department, job_status (e.g. Open), employment_type (e.g. Full-Time), and job_url — the canonical public URL for the opening.

Form Sections and Field Structure

The sections object organizes fields into five named groups: personal_information (name, email, phone, address, city), profile, details, eeo, and other. Each section contains an array of field objects with keys key, label, required, and options. This lets you inspect exactly which fields are mandatory, what dropdown or selection options exist, and how the form is laid out before a candidate sees it.

Custom Questions

The custom_questions array carries any employer-defined questions appended to the standard form. When the employer has not added custom questions, this array is empty. When present, each element reflects the structure provided by the careers site for that opening, including question text and any associated options.

Scope and Coverage

The API covers any job opening accessible via a public BambooHR careers subdomain. You supply the subdomain and the job ID from the URL — for example, jobbatical and 65 from jobbatical.bamboohr.com/careers/65. Only public, unauthenticated job listings are reachable; internal or draft postings that require login are not exposed.

Reliability & maintenanceVerified

The BambooHR API is a managed, monitored endpoint for jobbatical.bamboohr.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when jobbatical.bamboohr.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official jobbatical.bamboohr.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Audit required fields across all open roles at a company to compare application complexity
  • Detect whether EEO fields are present on a specific job opening using the eeo section
  • Mirror a BambooHR application form in a custom candidate portal by mapping sections field definitions
  • Check employment_type and department programmatically to classify roles in a job aggregator
  • Validate that a job listing is still active by inspecting the job_status field before directing candidates
  • Extract custom_questions from multiple job IDs to analyze what employer-specific information is being collected
  • Build a diff tool that compares application form fields across two job openings at the same company
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does BambooHR have an official developer API?+
Yes. BambooHR publishes an official REST API for HR data at https://documentation.bamboohr.com/reference. That API requires an employer-issued API key and covers employee records, time-off, and payroll data. It does not expose public careers form definitions in the same way this endpoint does.
What does the `sections` object actually contain?+
It contains up to five named keys: personal_information, profile, details, eeo, and other. Each key maps to an array of field objects. Every field object includes key (machine-readable identifier), label (display text), required (boolean), and options (array of selectable values when applicable, empty otherwise). Sections with no fields for a given job may return an empty array.
Can I retrieve all job openings for a company in one call?+
Not currently. The API resolves one job opening per call using a specific job_id. There is no listing or search endpoint that enumerates all active jobs for a given company subdomain. You can fork this API on Parse and revise it to add a job-listing endpoint that returns all open roles for a subdomain.
Are closed or draft job postings accessible?+
Only publicly visible job openings are accessible. Draft postings or internal roles that require employer authentication are not returned. The job_status field in the response reflects the status of the opening as publicly shown — for example, Open.
Does the API return the actual candidate applications or submissions?+
No. The endpoint returns only the form definition — the structure, fields, and metadata — not any submitted application data or candidate responses. Application submissions are private employer data and are not exposed. You can fork this API on Parse and revise it if your use case requires a different scope of public careers data.
Page content last updated . Spec covers 1 endpoint from jobbatical.bamboohr.com.
Related APIs in JobsSee all →
bambooworks.applytojob.com API
Access data from bambooworks.applytojob.com.
careers-page.com API
Access data from careers-page.com.
mayflower.recruitee.com API
Get the complete structure of a Recruitee job application form, including all sections, field labels, data types, required flags, and answer options to understand exactly what applicants need to provide. Use this information to programmatically build your own application interface or validate applicant responses against the official form requirements.
whyhirewrong.teamtailor.com API
Retrieve the complete structure of job application forms for the WhyHireWrong? Teamtailor career site, including all sections, fields, field types, and requirements to understand what applicants need to submit. Use this information to prepare job postings, design your application workflow, or integrate with your hiring system.
jobs.eu.lever.co API
Get detailed information about job application forms on EU Lever job postings, including all sections, field types, required status, and dropdown options. Use this data to understand the application requirements or integrate application form structures into your hiring workflow.
jobs.workable.com API
Access data from jobs.workable.com.
accenture.wd103.myworkdayjobs.com API
Retrieve the complete structure of job application forms hosted on Workday, including all pages, sections, field labels, requirements, visibility settings, and instructions to understand what applicants will encounter. Use this data to programmatically access form layouts, field specifications, and application requirements for job listings.
magic.pinpointhq.com API
Access data from magic.pinpointhq.com.