How to Scrape Oracle Recruiting Cloud (ORC) Jobs from Fortune 500 Companies
Oracle Recruiting Cloud (ORC) runs the careers pages for 32 Fortune 500 companies - 6.4% 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 Oracle Recruiting Cloud (ORC) API pattern, example actor input JSON, and known deployment caveats.
In this tutorial
What is Oracle Recruiting Cloud (ORC) and who uses it
By the NanoScrape team - Published 2026-09-02 - Updated 2026-09-02
Oracle Recruiting Cloud (ORC) is one of the top Applicant Tracking Systems (ATS) used by large enterprises. Our September 2026 audit of the Fortune 500 identified 32 companies running Oracle Recruiting Cloud (ORC) as their primary careers-page platform, making it the oracle_recruiting platform in the F500 by count.
The NanoScrape Career Site Jobs Scraper talks to Oracle Recruiting Cloud (ORC)'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 Oracle Recruiting Cloud (ORC) companies plus a ready-to-run actor input to scrape their jobs.
Oracle Recruiting Cloud (ORC) URL and API pattern
Oracle Recruiting Cloud (ORC) careers pages follow this URL pattern:
URL pattern: https://{code}.fa.{region}.oraclecloud.com/hcmUI/CandidateExperience/en/sites/{site}
API endpoint: /hcmRestApi/resources/latest/recruitingCEJobRequisitions (with finder parameter)queries array. The actor auto-detects the platform from the URL pattern and calls the correct endpoint. Alternatively, pass an explicit platform object: {"platform": "oracle_recruiting", "company": URL}.Fortune 500 companies on Oracle Recruiting Cloud (ORC)
All 32 Fortune 500 companies running Oracle Recruiting Cloud (ORC), showing the top 30 by F500 rank. The complete list is in the interactive F500 careers table.
- #22 JPMorgan Chase: https://www.jpmorganchase.com/careers
- #26 Kroger: https://www.krogerfamilycareers.com/en/sites/CX_2001
- #38 Dell Technologies: https://iawmqy.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sit
- #52 Albertsons: https://eofd.fa.us6.oraclecloud.com:443/hcmUI/CandidateExperience/en/s
- #63 American Express: https://www.americanexpress.com/en-us/careers/
- #71 Oracle: https://www.oracle.com/careers/
- #113 Honeywell: https://careers.honeywell.com/en/sites/Honeywell
- #133 GuideWell Mutual: https://fa-etum-saasfaprod1.fa.ocs.oraclecloud.com/hcmUI/CandidateExpe
- #171 Marriott International: https://careers.marriott.com/
- #174 Waste Management: https://www.wm.com/us/en/inside-wm/careers
- #179 International Paper: https://iazbqy.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sit
- #185 Sherwin-Williams: https://careers.sherwin-williams.com/us/en/home.html
- #190 Macy's: https://www.macysinc.com:443/work-with-us/careers/default.aspx
- #212 Tenet Healthcare: https://eodr.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites
- #217 Bank of New York: https://www.bny.com/corporate/global/en/about-us/careers/work-with-us.
- #222 AutoZone: https://careers.autozone.com/hcmUI/CandidateExperience/en/sites/CX_1
- #225 Cheniere Energy: https://www.cheniere.com/careers
- #237 Emerson Electric: https://www.emerson.cn/zh/corporate/careers
- #250 Texas Instruments: https://careers.ti.com/en/sites/CX
- #256 Consolidated Edison: https://www.oru.com/en/about-us/careers
- #303 FirstEnergy: https://www.firstenergycorp.com/careers.html
- #310 CSX: https://www.csx.com/index.cfm/working-at-csx/
- #349 Hormel Foods: https://www.hormelfoods.com/careers/
- #400 American Tower: https://careers.americantower.com
- #416 Vertiv: https://www.vertiv.com/de-emea/about/careers/
- #445 NOV: https://www.nov.com/careers
- #452 ABM Industries: https://www.abm.com/careers
- #457 Jefferies Financial: https://www.jefferies.com/careers/
- #470 Yum Brands: https://www.yum.com/wps/portal/yumbrands/Yumbrands/careers
- #477 Howmet Aerospace: https://www.howmet.com/joinus/
Example actor run: first 5 Oracle Recruiting Cloud (ORC) 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": "oracle_recruiting",
"company": "https://jpmc.fa.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1001/requisitions"
},
{
"platform": "oracle_recruiting",
"company": "https://eluq.fa.us2.oraclecloud.com:443/hcmRestApi/CandidateExperience/siteFavicon/favicon-16x16.png?siteNumber=CX_2001&size=16x16"
},
{
"platform": "oracle_recruiting",
"company": "https://iawmqy.fa.ocs.oraclecloud.com/hcmUI/CandidateExperience/en/sites/careers"
},
{
"platform": "oracle_recruiting",
"company": "https://eofd.fa.us6.oraclecloud.com:443/hcmUI/CandidateExperience/en/sites/CX_1001"
},
{
"platform": "oracle_recruiting",
"company": "https://egug.fa.us2.oraclecloud.com/"
}
],
"maxJobsPerCompany": 500,
"includeDescription": true
}Output schema for Oracle Recruiting Cloud (ORC)
The actor emits fleet-standard field names across all 24 supported ATS platforms. Field availability for Oracle Recruiting Cloud (ORC):
- title: available (always)
- company: available (extracted from tenant slug)
- ats_platform: available (always emits 'oracle_recruiting')
- 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
Tenant URLs are cryptic (random alphanumeric subdomain). Comma-separated params limit query size.
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 Oracle Recruiting Cloud (ORC)?
Our September 2026 audit identified 32 F500 companies running Oracle Recruiting Cloud (ORC), representing 6.4% 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 Oracle Recruiting Cloud (ORC)?
No. Oracle Recruiting Cloud (ORC) 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 Oracle Recruiting Cloud (ORC)?
Yes. The actor works for any Oracle Recruiting Cloud (ORC) deployment worldwide, not just F500. Pass the careers URL as a string in the queries array (or as a {"platform": "oracle_recruiting"} object). The F500 list in this tutorial is a starting reference for the largest employers.
What is the difference between Oracle Recruiting Cloud (ORC) 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.