How to Scrape iCIMS Jobs from Fortune 500 Companies
iCIMS runs the careers pages for 31 Fortune 500 companies - 6.2% of the F500. This guide shows how to scrape jobs from every one of them using the NanoScrape Career Site Jobs Scraper: verified careers URLs, the underlying iCIMS API pattern, example actor input JSON, and known deployment caveats.
In this tutorial
What is iCIMS and who uses it
By the NanoScrape team - Published 2026-09-02 - Updated 2026-09-02
iCIMS is one of the top Applicant Tracking Systems (ATS) used by large enterprises. Our September 2026 audit of the Fortune 500 identified 31 companies running iCIMS as their primary careers-page platform, making it the icims platform in the F500 by count.
The NanoScrape Career Site Jobs Scraper talks to iCIMS's public JSON API directly (HTTP-only, no browser required) and returns structured job records at $1 per 1,000 jobs. This tutorial gives you the verified list of F500 iCIMS companies plus a ready-to-run actor input to scrape their jobs.
iCIMS URL and API pattern
iCIMS careers pages follow this URL pattern:
URL pattern: https://careers-{company}.icims.com/jobs/search
API endpoint: JavaScript-rendered SPA (best-effort HTML extraction from initial payload)queries array. The actor auto-detects the platform from the URL pattern and calls the correct endpoint. Alternatively, pass an explicit platform object: {"platform": "icims", "company": URL}.Fortune 500 companies on iCIMS
All 31 Fortune 500 companies running iCIMS, showing the top 30 by F500 rank. The complete list is in the interactive F500 careers table.
- #34 State Farm: https://www.statefarm.com/careers
- #108 Dollar General: https://careers.dollargeneral.com
- #110 Northwestern Mutual: https://www.northwesternmutual.com/careers/
- #135 Advanced Micro Devices: https://www.amd.com/en/corporate/careers.html?utm_campaign=careers&utm
- #159 Quanta Services: https://www.quantaservices.com/careers
- #172 Constellation Energy: https://jobs.constellationenergy.com/careers-home/
- #180 Exelon: https://www.exeloncorp.com/grid/join-us-at-exelon-where-people-with-pu
- #192 1 Automotive: no public careers URL on file
- #242 Steel Dynamics: https://www.steeldynamics.com/careersnew/
- #253 Universal Health Services: https://jobs.uhs.com/careers/
- #264 EMCOR: https://emcorgroup.com/careers
- #280 Builders FirstSource: https://careers.bldr.com
- #286 EchoStar: https://www.echostar.com/careers
- #296 W.R. Berkley: https://www.berkley.com/about-us/careers
- #308 Alaska Air: https://careers.alaskaair.com/jobs/?lid=vanity-careers
- #312 Fidelity National Financial: https://fnf.com/careers
- #314 Reliance: https://careers.reliance.com
- #316 Western & Southern Financial: https://www.westernsouthern.com/careers
- #317 MasTec: https://www.mastec.com/careers
- #322 BrightSpring Health Services: https://www.brightspringhealth.com/careers/
- #335 Ryder System: https://www.ryder.com/en-us/careers
- #358 Ulta Beauty: https://careers.ulta.com/careers/
- #385 Toll Brothers: https://www.tollcareercenter.com/
- #401 FM: https://careers.fm.com/careers-home/
- #415 Celanese: https://www.celanese.com/careers
- #438 PPL: https://www.pplweb.com/careers/why-ppl/
- #451 Sprouts Farmers Market: https://www.sprouts.com/careers/
- #455 Sirius XM: https://careers.siriusxm.com/careers/
- #465 Post: https://www.postholdings.com/news/post-holdings-news/careers/
- #475 Foot Locker: https://careers.footlocker.com
Example actor run: first 5 iCIMS F500 companies
Copy this input into the actor's Input tab (JSON editor mode) to scrape jobs from the top 5 F500 companies on this ATS:
{
"queries": [
{
"platform": "icims",
"company": "https://careers-statefarm.icims.com/connect/login?redirect=welcome"
},
{
"platform": "icims",
"company": "https://cookie-policy-scripts.icims.com/dollargeneral/careers.dollargeneral.com/script.js"
},
{
"platform": "icims",
"company": "https://opportunities-northwesternmutual.icims.com/jobs/2952/connect-with-a-recruiter/login\\"
},
{
"platform": "icims",
"company": "https://internal-amd.icims.com/jobs/search?back=none&redirect=search"
},
{
"platform": "icims",
"company": "https://allcareers-quanta.icims.com/"
}
],
"maxJobsPerCompany": 500,
"includeDescription": true
}Output schema for iCIMS
The actor emits fleet-standard field names across all 24 supported ATS platforms. Field availability for iCIMS:
- title: available (always)
- company: available (extracted from tenant slug)
- ats_platform: available (always emits 'icims')
- location: available (usually)
- department: platform-dependent (see per-ATS README table)
- employment_type: platform-dependent
- description: available when
includeDescription: true - apply_url and job_url: always available
- created_at: format varies by ATS (ISO 8601, human-readable string, or null)
Known limitations
iCIMS portals are JavaScript SPAs. Some AWS-WAF-guarded deployments return empty results; browser fallback recommended for those.
Related resources
- Fortune 500 jobs mega-tutorial: complete 3-actor stack for all 500 F500 companies
- F500 ATS market share study 2026: full ATS distribution and methodology
- Interactive F500 careers table: sortable HTML with careers URL and ATS for every F500 company
- How to Scrape Every Job Online: 62 job scrapers across 25 countries
- Career Site Jobs Scraper on Apify: full input schema, 24 supported ATS platforms, and pricing
FAQ
How many Fortune 500 companies use iCIMS?
Our September 2026 audit identified 31 F500 companies running iCIMS, representing 6.2% of the Fortune 500. This may shift by 5-15% year over year as companies migrate between ATS platforms.
Do I need a login or API key to scrape iCIMS?
No. iCIMS public careers pages are designed for public consumption by job aggregators and search engines. The NanoScrape Career Site Jobs Scraper uses the same public endpoints without authentication.
Can I scrape non-F500 companies that use iCIMS?
Yes. The actor works for any iCIMS deployment worldwide, not just F500. Pass the careers URL as a string in the queries array (or as a {"platform": "icims"} object). The F500 list in this tutorial is a starting reference for the largest employers.
What is the difference between iCIMS and Workday for scraping?
Different ATS platforms have different API shapes, field availability, and pagination approaches. See our F500 ATS market share study for a full comparison. The Career Site Jobs Scraper handles all 24 supported ATS platforms with normalized output field names.
How often does the actor's ATS support list update?
New ATS platforms are added roughly every 4-8 weeks based on customer requests and F500 migration trends. See the actor README's Coming Soon section for the current roadmap.
Related resources
- Fortune 500 jobs mega-tutorial: Complete 3-actor stack for all 500 F500 companies.
- F500 ATS market share study 2026: Full ATS distribution with per-industry breakdown.
- How to Scrape Every Job Online: 62 job scrapers across 25 countries.
- Career Site Jobs Scraper on Apify: Full input schema, 24 supported ATS platforms, and pricing.