For Agents
List and schedule DentiMax appointments and send outbound messages to patients from external apps and agents.
Get started with DentiMax Communicator API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"schedule a dentimax appointment"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with DentiMax Communicator API API.
List upcoming appointments via GET /appointments
Schedule a new appointment for a patient with POST /appointments
Send a direct message to a patient through POST /messages
Drive appointment reminder workflows from external schedulers
Support DentiMax practices with custom booking widgets
GET STARTED
Use for: I want to schedule a new appointment in DentiMax, List today's appointments for a DentiMax practice, Send a reminder message to a DentiMax patient, Get the upcoming appointments for a clinician
Not supported: Does not handle clinical charting, imaging, billing, or insurance claims — use for DentiMax appointment listing, scheduling, and patient messaging only.
Jentic publishes the only available OpenAPI specification for DentiMax Communicator API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for DentiMax Communicator API, keeping it validated and agent-ready. DentiMax Communicator is the patient-communication layer attached to the DentiMax dental practice management suite, used by US dental practices for scheduling and outbound patient messaging. The API exposes three endpoints covering listing appointments, scheduling appointments, and sending messages directly to a patient. Authentication uses a header API key, and the surface is intentionally narrow to support reminder, confirmation, and booking flows.
Patterns agents use DentiMax Communicator API API for, with concrete tasks.
★ Custom Booking Widget
Embed a custom booking widget on a practice website that calls POST /appointments to schedule directly into DentiMax. Practices retain control of branding and form fields while ensuring the booking lands in the same schedule the front desk works from.
Collect patient and slot details from the widget, then POST them to /appointments and confirm the response on screen.
Patient Reminder Workflow
Run a reminder workflow that pulls upcoming appointments via GET /appointments and sends a personalised reminder for each via POST /messages. This reduces no-shows for DentiMax practices that prefer in-system messaging over a third-party SMS gateway.
Pull tomorrow's appointments via GET /appointments, then call POST /messages for each patient with a reminder body.
Outbound Patient Messaging
Send ad-hoc messages to patients straight from a CRM or operations console via POST /messages, without the staff member needing to log in to the DentiMax UI. Useful for follow-up notes, recall outreach, and one-off operational messages.
Call POST /messages with the target patient id and message body, and surface the delivery result back to the operator.
AI Agent Integration via Jentic
A front-desk assistant agent can use Jentic to schedule a new appointment and send a confirmation message in one conversation. Jentic resolves the API key from the vault and chains the two calls so the agent does not handle credentials or read API docs to act.
Use Jentic to search for 'schedule a dentimax appointment', call POST /appointments, then call POST /messages with a confirmation body.
3 endpoints — jentic publishes the only available openapi specification for dentimax communicator api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/appointments
List appointments
/appointments
Schedule a new appointment
/messages
Send a message to a patient
/appointments
List appointments
/appointments
Schedule a new appointment
/messages
Send a message to a patient
Three things that make agents converge on Jentic-routed access.
Credential isolation
DentiMax API keys are stored encrypted in the Jentic vault. Agents reference operations by name and Jentic injects the header at execution time, keeping the secret out of prompts and logs.
Intent-based discovery
Agents search for intents like 'schedule a dental appointment' and Jentic returns DentiMax's POST /appointments with its full input schema, so the agent can act without reading docs.
Time to first call
Direct DentiMax integration: a few hours to wire auth and the three endpoints. Through Jentic: under 30 minutes to call appointment scheduling and reminder messaging end to end.
Alternatives and complements available in the Jentic catalogue.
Dentally API
UK and APAC dental practice management API with 31 endpoints across patients, appointments, invoices, and NHS claims.
Choose Dentally when the practice is on Dentally rather than DentiMax, or when you need patient and billing endpoints beyond appointments and messaging.
DrChrono API
US EHR with broad scheduling, clinical, and billing surface.
Choose DrChrono when the practice needs full EHR features beyond DentiMax's scheduling and messaging scope.
Twilio Messaging API
SMS delivery for reminders when DentiMax in-system messaging is not enough.
Use Twilio alongside DentiMax when reminders should go out as SMS over a dedicated number rather than DentiMax's messaging channel.
SendGrid Mail API
Transactional email for confirmations and recall emails.
Use SendGrid alongside DentiMax when confirmations need to go out via branded email.
Specific to using DentiMax Communicator API API through Jentic.
Why is there no official OpenAPI spec for DentiMax Communicator API?
DentiMax does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call DentiMax Communicator API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the DentiMax Communicator API use?
The DentiMax Communicator API uses an API key passed in a request header. Through Jentic, the key is stored in the encrypted vault and injected at execution time, so it never enters the agent's prompt.
Can I schedule appointments with the DentiMax Communicator API?
Yes. POST /appointments creates a new appointment in the practice schedule. GET /appointments returns the existing list, suitable for confirming the booking landed in the right slot.
Can I send a message to a patient through the DentiMax Communicator API?
Yes. POST /messages sends an outbound message to a specified patient, useful for reminders, confirmations, and recall outreach. Pair it with GET /appointments to drive a full reminder workflow.
Does the DentiMax Communicator API expose patient records?
This OpenAPI spec covers appointments and messages only — there are no patient CRUD endpoints in the documented surface. Patient identifiers used in /appointments and /messages must come from the DentiMax practice management system.
How do I drive a reminder workflow through Jentic?
Run `pip install jentic`, search for 'list dentimax appointments', then loop over the response and call POST /messages per patient. Jentic handles the API key for both operations from the vault.