Endpoint Playground
Test Crawlora's Oracle Recruiting Single Job 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/job?host=eeho.fa.us2.oraclecloud.com&site=CX_1&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| host | string | Yes | eeho.fa.us2.oraclecloud.com | Oracle Cloud host (*.oraclecloud.com) |
| site | string | Yes | CX_1 | Oracle career site number |
| id | string | Yes | Oracle requisition Id from a board listing |
{
"code": 200,
"msg": "OK",
"data": {
"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",
"description_html": "<p>ā¦</p>",
"description_text": "ā¦"
}
}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.
Returns a single Oracle Recruiting requisition with its full HTML/text description (description, responsibilities, qualifications). id is the requisition Id from a board listing; host/site as in the board endpoint. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"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",
"description_html": "<p>ā¦</p>",
"description_text": "ā¦"
}
}curl "https://api.crawlora.net/api/v1/jobs/oracle/job?host=<host>&site=<site>&id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"