Endpoint Playground
Test Crawlora's Oracle Recruiting Board Listing API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/jobs/oracle/board?host=eeho.fa.us2.oraclecloud.com&site=CX_1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| host | string | Yes | eeho.fa.us2.oraclecloud.com | Oracle Cloud host (careers URL, *.oraclecloud.com) |
| site | string | Yes | CX_1 | Oracle career site number |
| search | string | No | Free-text keyword search | |
| limit | integer | No | Page size, default 25, max 50 | |
| offset | integer | No | Page offset, default 0 |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "oracle",
"company": "eeho.fa.us2.oraclecloud.com",
"count": 25,
"total": 2108,
"jobs": [
{
"provider": "oracle",
"id": "331738",
"title": "Customer Service Analyst (Oracle Hospitality)",
"company": "eeho.fa.us2.oraclecloud.com",
"location": "India",
"remote": false,
"employment_type": "Full time",
"url": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/331738",
"apply_url": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/331738",
"posted_at": "2026-07-13",
"description_text": "Oracle Hospitality delivers technology solutions…"
}
],
"source_url": "https://eeho.fa.us2.oraclecloud.com/hcmRestApi/resources/latest/recruitingCEJobRequisitions?onlyData=true&expand=requisitionList&finder=findReqs;siteNumber=CX_1,limit=25,offset=0"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Lists an Oracle Recruiting Cloud tenant's public requisitions, paged via limit/offset. host and site both come from the careers URL https://{host}/hcmUI/CandidateExperience/en/sites/{site}/ (host must be an *.oraclecloud.com hostname; site looks like CX_1). The listing carries a short description; use the single-job endpoint for full detail. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "oracle",
"company": "eeho.fa.us2.oraclecloud.com",
"count": 25,
"total": 2108,
"jobs": [
{
"provider": "oracle",
"id": "331738",
"title": "Customer Service Analyst (Oracle Hospitality)",
"company": "eeho.fa.us2.oraclecloud.com",
"location": "India",
"remote": false,
"employment_type": "Full time",
"url": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/331738",
"apply_url": "https://eeho.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/331738",
"posted_at": "2026-07-13",
"description_text": "Oracle Hospitality delivers technology solutions…"
}
],
"source_url": "https://eeho.fa.us2.oraclecloud.com/hcmRestApi/resources/latest/recruitingCEJobRequisitions?onlyData=true&expand=requisitionList&finder=findReqs;siteNumber=CX_1,limit=25,offset=0"
}
}curl "https://api.crawlora.net/api/v1/jobs/oracle/board?host=<host>&site=<site>" \
-H "x-api-key: $CRAWLORA_API_KEY"