Zohorecruit APIcognitioneducationgroup.zohorecruit.eu ↗
Access published job openings from a ZohoRecruit careers site and retrieve the complete application form structure including all sections and fields for any job listing. Use this to discover available positions and understand the full candidate application requirements before submitting.
curl -X GET 'https://api.parse.bot/scraper/482d087c-db2a-40f9-b20c-ccd619868c9e/list_jobs?careers_url=https%3A%2F%2Fcognitioneducationgroup.zohorecruit.eu%2Fjobs%2FCareers' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns every job opening currently published on a ZohoRecruit careers listing page, in one round trip, as the site embeds the whole list in the page (no pagination). Each job carries its job_id, a canonical job_url that get_application_form accepts unchanged, the title, type, industry, location fields, remote flag, opening date and plain-text description. An empty jobs array means the careers page currently has no published openings.
| Param | Type | Description |
|---|---|---|
| careers_urlrequired | string | The ZohoRecruit careers listing page URL, of the form https://<company>.zohorecruit.<tld>/jobs/<page> (e.g. one shape: https://<company>.zohorecruit.eu/jobs/Careers). Only zohorecruit hosts are accepted. |
{
"type": "object",
"fields": {
"jobs": "array of job openings, each with job_id (string), job_url (canonical listing URL accepted by get_application_form), title, job_type, industry, city, state, country, remote (boolean), date_opened (YYYY-MM-DD) and description (plain text)",
"count": "integer number of jobs returned"
},
"sample": {
"data": {
"jobs": [
{
"city": "Nationwide",
"state": null,
"title": "Education Consultants",
"job_id": "22362000005455001",
"remote": false,
"country": "New Zealand",
"job_url": "https://cognitioneducationgroup.zohorecruit.eu/jobs/Careers/22362000005455001/Education-Consultants",
"industry": "Education Administration Programmes",
"job_type": "Contract",
"date_opened": "2026-09-02",
"description": "Expression of Interest: Education Consultants Location: New Zealand – Nationwide ..."
}
],
"count": 1
},
"status": "success"
}
}About the Zohorecruit API
The Zohorecruit API on Parse exposes 2 endpoints for the publicly available data on cognitioneducationgroup.zohorecruit.eu. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.