Morbis APImorbis.id ↗
Access Morbis healthcare platform data: job listings, software products, company info, and featured clients via 4 structured endpoints.
What is the Morbis API?
The Morbis.id API covers 4 endpoints that expose public data from Indonesia's Morbis healthcare management platform — including job listings with full descriptions and benefits, software product feature sets, company background, and a featured client roster. The list_careers endpoint alone returns fields like employment type, work mode, department, requirements, and benefits for every active opening, giving you a complete snapshot of Morbis hiring in a single call.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/a5dc4953-7b32-452a-a144-aad442445b94/list_careers' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns all current career openings at Morbis, including job title, employment type, experience level, work mode, location, department, job description, requirements, required submissions, and benefits. Each listing is extracted from the public careers page in a single request. The result set is the complete list of open positions; there is no pagination.
No input parameters required.
{
"type": "object",
"fields": {
"total": "integer count of career listings returned",
"careers": "array of career listing objects, each containing title, is_urgent, employment_type, experience, work_mode, location, department, job_description, requirements, submissions_required, and benefits"
},
"sample": {
"data": {
"total": 6,
"careers": [
{
"title": "Programmer",
"benefits": [
"Berkembang bersama tim yang supportif",
"BPJS dan Asuransi kesehatan"
],
"location": "Yogyakarta",
"is_urgent": true,
"work_mode": "On-site",
"department": "Product Department",
"experience": "1 - 3 Years",
"requirements": [
"Memahami Konsep Object Oriented",
"Menguasai salah satu PHP Framework (Codeigniter / Cake / Laravel / dsb)"
],
"employment_type": "Full Time",
"job_description": [
"Memahami Konsep Object Oriented",
"Menguasai salah satu PHP Framework (Codeigniter / Cake / Laravel / dsb)"
],
"submissions_required": [
"Portofolio",
"CV"
]
}
]
},
"status": "success"
}
}About the Morbis API
Career Listings
The list_careers endpoint returns every active job opening from Morbis with no required inputs. Each object in the careers array includes title, is_urgent, employment_type, experience, work_mode, location, and department, plus structured content for job description, requirements, required submissions, and benefits. The total field gives the count of listings in the response. Because there is no filtering or pagination, the full current vacancy list comes back in one request.
Products and Client Data
The list_products endpoint returns all Morbis software modules — such as hospital management, clinic, pharmacy, blood bank, and doctor portal — with each product's name, subtitle, and features list. This is useful for mapping what the platform offers without navigating the product site. The list_clients endpoint returns the names and logo_url values for every featured hospital and clinic displayed on the Morbis homepage, along with a total count.
Company Information
The get_company_info endpoint returns structured content from the Morbis About page. Response fields include a description string, a history array of milestone objects (each with title and description), a values array representing the CETO framework (each entry has name and description), a pillars array of three named organizational pillars, and separate vision and mission statement strings. There are no input parameters; the full company profile is returned in one call.
The Morbis API is a managed, monitored endpoint for morbis.id — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when morbis.id changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official morbis.id API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Aggregate Indonesian healthcare IT job listings by scraping
employment_typeandwork_modefields fromlist_careers. - Build a competitive intelligence brief on Morbis software offerings using product
name,subtitle, andfeaturesfromlist_products. - Display a live Morbis careers widget on a job board filtered by
departmentoris_urgentfrom thecareersarray. - Populate a vendor profile page with Morbis
vision,mission, and CETOvaluesfromget_company_info. - Track Morbis client growth over time by archiving the
clientsarray andtotalcount fromlist_clients. - Map Morbis's product ecosystem against competitor healthcare platforms using the
featureslists fromlist_products. - Enrich a healthcare vendor database with Morbis company
historymilestones and organizationalpillars.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Morbis have an official public developer API?+
What details does `list_careers` return beyond job title?+
is_urgent, employment_type, experience, work_mode, location, department, a job description, requirements, required submissions, and benefits. No filtering parameters are accepted — every current opening is returned in the same response.Can I retrieve individual career or product detail pages through this API?+
list_careers covers job details and list_products covers feature lists — but there are no single-item detail endpoints with unique IDs. You can fork this API on Parse and revise it to add a dedicated detail endpoint if deeper per-item data is needed.Does the API return contact details or application URLs for job listings?+
careers response includes job description, requirements, and required submissions but does not expose application links or recruiter contact details. You can fork this API on Parse and revise it to add an endpoint that extracts application URLs if they appear on individual listing pages.