CareerBuilder Job Scraper avatar

CareerBuilder Job Scraper

Pricing

from $9.99 / 1,000 results

Go to Apify Store
CareerBuilder Job Scraper

CareerBuilder Job Scraper

Scrapes CareerBuilder job listings by keyword and location, returning job title, company, URL, posting date, employment type, location, description, salary details, and application URL.

Pricing

from $9.99 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Scrapes job listings from CareerBuilder by keyword and location. CareerBuilder (now operated by Monster) renders its /job-listings/search results through a DataDome-protected XHR, so this actor instead reads the public, robots-allowed SEO search pages — careerbuilder.com/jobs-<keyword> and careerbuilder.com/jobs-<keyword>-in-<city>,<state>

Input

FieldDefaultDescription
keyword"software engineer"Job search phrase, e.g. registered nurse.
locations[]List of "City, ST" strings, e.g. Austin, TX. Each is a separate search; results are disjoint per location, so this is how you widen coverage. Empty = one nationwide search.
max_results50Overall cap on records pushed (1–2000).
max_pages1Extra ?page=N requests per query (1–10). See the pagination note below.

The actor runs with completely empty input (nationwide software engineer, 50 records).

Output

One record per job listing — flat snake_case fields plus raw, the untouched source object:

{
"job_id": "f131adcc-b2df-4260-b1ca-781bc00f0127",
"seo_job_id": "senior-software-engineer-ii-research-development--f131adcc-b2df-4260-b1ca-781bc00f0127",
"title": "Senior Software Engineer II Research & Development",
"company": "Cotiviti",
"job_url": "https://www.careerbuilder.com/job-details/senior-software-engineer-ii-research-development--f131adcc-b2df-4260-b1ca-781bc00f0127",
"date_posted": "2026-07-28T21:35:00Z",
"formatted_date": "2026-07-28T00:00:00",
"date_recency": "19 days ago",
"employment_type": "Full-Time",
"employment_type_normalized": "FULL_TIME",
"job_type": "OTHER",
"status": "ACTIVE",
"promoted": false,
"short_description": "The Senior Software Engineer II is a senior technical engineer responsible for designing, developing and delivering ...",
"location_city": "Remote",
"location_country": "US",
"location_display": "Remote",
"latitude": "38.179444",
"longitude": "-99.924702",
"apply_url": "https://careers-cotiviti.icims.com/jobs/19689/job?utm_source=Monster_integration",
"search_keyword": "software engineer",
"raw": { "...": "original jobResult object" }
}

Salary fields (salary_min, salary_max, salary_currency, salary_unit) appear only on the minority of listings where the employer published a range — roughly 1 in 7 in spot checks.

Rate limits and terms

DataDome rate-limits bursts, so the actor paces itself (1.5 s between pages) and backs off on a block. Keep max_results modest and avoid running many concurrent copies. Scraped data is subject to CareerBuilder's Terms of Use; verify your intended use complies before collecting at scale.