Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Healthcare / DentiMax Communicator API
DentiMax Communicator API logo

DentiMax Communicator API

★ Only Publicly Available OpenAPI DocumentHealthcareAppointment SchedulingapiKey3 EndpointsREST

For Agents

List and schedule DentiMax appointments and send outbound messages to patients from external apps and agents.

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. 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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the DentiMax Communicator API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the DentiMax Communicator API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with DentiMax Communicator 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

Use Cases

Patterns agents use DentiMax Communicator 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.

Key Endpoints

3 endpoints — jentic publishes the only available openapi specification for dentimax communicator api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/appointments

List appointments

POST

/appointments

Schedule a new appointment

POST

/messages

Send a message to a patient

GET

/appointments

List appointments

POST

/appointments

Schedule a new appointment

POST

/messages

Send a message to a patient

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

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.

Alternative

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.

Complementary

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.

Complementary

SendGrid Mail API

→

Transactional email for confirmations and recall emails.

Use SendGrid alongside DentiMax when confirmations need to go out via branded email.

FAQs

Specific to using DentiMax Communicator 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.

GET STARTED

Start building with DentiMax Communicator API

Explore with Jentic
View OpenAPI Document