← Back to all docs

Open Dental API

Open Dental is a comprehensive, highly customizable dental practice management software for practices of any size. This page is an independent design exercise that asks what a well-designed Open Dental API could look like: the resources it would expose, the authentication it would need, and the workflows it could unlock. Below: a hypothetical endpoint design, the technical requirements a production implementation would face, the use cases programmatic access could serve, and where to start if your team needs this kind of access today.

By Alex KlarfeldJuly 8, 2026
Open Dental API

This page is an independent analysis by Supergood of what a well-designed Open Dental API could look like. It draws on publicly available information, vendor materials, and general integration experience in this category. Nothing on this page describes an existing Open Dental product, and Supergood is not affiliated with or endorsed by the vendor. If the vendor offers an official API, we highly recommend it.

What is Open Dental?

Open Dental is a comprehensive, highly customizable dental practice management software for practices of any size. Practices use Open Dental to manage patient records, schedule appointments, chart treatment, run billing and insurance claims, and engage patients through portals, online scheduling, and integrated messaging, backed by 100s of bridges to third-party programs and 20+ clearinghouses for claims processing.

Core product areas include:

  • Practice Management (patient records, appointment scheduling, billing)
  • Clinical Tools (graphical tooth chart, electronic prescriptions, perio exams, discount plans)
  • Reporting (built-in and graphic reports plus customizable user queries)
  • Communication (secure email, integrated texting, automated messaging, mass email)
  • Patient Engagement (patient portal, payment portal, web forms, Web Sched online scheduling, eClipboard)
  • Mobile Solutions (ODMobile app, ODTouch) and Message-to-Pay payments

An API for a platform like this would naturally organize around its core data entities:

  • Patients, Appointments, Providers, Clinics, Operatories, Schedules
  • ProcedureLogs, PerioExams, Allergies, Diseases, Medications
  • Claims, Payments, Adjustments, PayPlans, Benefits, InsPlans
  • Employees, Documents, and 100+ additional resources mapped 1:1 to database tables

The Open Dental Integration Challenge

Open Dental ships a capable REST API, but operationalizing it across real-world dental practices introduces friction:

  • Dual-key authentication: Every request needs both a Developer API Key and a per-customer Customer API Key in an Authorization: ODFHIR {Developer}/{Customer} header, generated through the Developer Portal
  • Aggressive rate limits: Read-only API permissions are throttled to one request per five seconds; broader permissions relax to one per second, with 429 Too Many Requests when a CustomerKey's queue backs up
  • BAA and HIPAA gates: API developers must have a Business Associate Agreement in place with each client practice before accessing protected health information
  • Per-practice deployment variance: Self-hosted, eServices, and cloud-hosted instances differ in connectivity, versions, and which API permissions are enabled
  • REST vs. FHIR split: The REST API is recommended for most interfaces while a separate FHIR API targets medical-system interoperability, mapping between them is non-trivial
  • 100+ table-mapped resources: Resources align 1:1 with database tables, so building useful workflows means stitching many low-level calls and handling permission scopes per resource

What a Open Dental API Could Look Like

If Open Dental exposed a modern, general-purpose API, the integration challenges above suggest what it would need to get right. This is a design sketch, not documentation of anything that exists today:

  • First-class authentication: session handling with support for MFA and enterprise sign-on where the platform uses them
  • Consistent resources: normalized JSON schemas and pagination across the platform's core objects
  • Reliable writes: idempotency keys and validation that mirrors the platform's own workflow rules
  • Entitlement awareness: endpoints scoped to what each customer's licensing actually permits

The endpoint sketches, technical requirements, and use cases below flesh out this hypothetical design.

How AI agents could connect to software like Open Dental: MCP servers for software without a public API →

Need This Kind of Access Today?

If your team needs this kind of access today, Supergood builds integrations on request, one customer at a time. We act at the direction of our customers, within the access they already hold. Customers bring their own accounts, licenses, and entitlements. If the vendor offers an official API, we highly recommend it.

  1. Schedule an Integration Assessment
    A 30-minute session to review your product mix, licensing, and authentication model.
  2. Scope the Integration
    We design the access pattern around your workflows and entitlements.
  3. Deploy with Monitoring
    Go live with continuous monitoring as your platforms evolve.

Potential API Endpoints

Authentication

POST/authenticate

Would establish an authenticated session using the Developer and Customer API keys for downstream calls.

Patient Operations

GET/patients

Would list and filter patient records, including demographics, status, provider, and clinic assignments.

Scheduling

GET/appointments

Would retrieve appointments with filters for provider, operatory, clinic, date range, and status.

Scheduling

POST/create_appointment

Would schedule a new appointment for a patient against a provider, operatory, and time slot.

Clinical

GET/procedurelogs

Would pull completed and planned procedures (ProcedureLogs) for a patient, including codes and tooth/surface detail.

Billing

GET/claims

Would retrieve insurance claims with status, carrier, and payment activity across plans and clearinghouses.

Billing

POST/create_payment

Would post a patient or insurance payment and apply it to outstanding procedures and claims.

Use Cases

Sync patient and scheduling data into your stack

- Pull patient demographics, providers, and clinics into a central warehouse - Stream appointment, recall, and Web Sched online-scheduling events to downstream tools - Keep a unified patient 360 across multi-location dental groups

Automate clinical and procedure workflows

- Read ProcedureLogs, perio exams, and treatment plans for analytics and care coordination - Push planned procedures and chart updates back into Open Dental - Trigger downstream prescription, lab, and imaging workflows from procedure events

Reconcile claims, payments, and billing

- Sync claims, adjustments, and insurance payments into accounting and AR systems - Match patient and carrier payments against ProcedureLogs and PayPlans - Surface aging balances and denied claims to follow-up and collections workflows

Power patient engagement and communications

- Drive integrated texting, mass email, and Message-to-Pay from external campaign tools - Sync web forms and eClipboard intake data into your CRM - Trigger automated reminders and payment requests from appointment and balance events

Technical Requirements

Authentication

Would require developer and Customer API keys via an Authorization: ODFHIR {Developer}/{Customer} header, managed in a secure session

Connectivity

Would build on open Dental REST API (100+ table-mapped resources) plus the separate FHIR API for medical interoperability

Response format

Normalized JSON across patient, appointment, procedure, claim, and payment objects

Rate limits

Adaptive pacing respecting one request per five seconds for read-only keys, relaxed to one per second with broader permissions

Session management

Would need automatic key handling, per-CustomerKey request queuing, and credential rotation

Data freshness

Near real-time reads for patients, appointments, and claims with optional scheduled batch syncs

Security

Encrypted credential vault, BAA-aware access, HIPAA-aligned controls, and audit logging

Webhooks

Event-style callbacks for appointment changes, procedure completion, claim status, and payment posting

Latency

Design target: sub-second reads on cached entities; throttle-bound writes paced to Open Dental's per-CustomerKey limits

Throughput

Design target: per-practice workers sized to multi-location dental group volume within rate-limit constraints

Reliability

Retry, backoff, and 429 Too Many Requests handling with idempotency keys for writes

Versioning

Clear versioning and change management would matter as Open Dental evolves

Frequently asked questions

Availability of official interfaces varies by product, plan, and licensing. Many platforms in this category gate access behind partner programs or paid modules, and there is often no broadly available, self-serve public API. Check the vendor's developer resources for current offerings.

The hard parts would be authentication (MFA, session management, enterprise controls), consistent schemas across the platform's products, and write semantics that reconcile the way the platform's own workflows do.

No. This page is an independent analysis by Supergood and is not affiliated with, sponsored by, or endorsed by the vendor. All product names and trademarks belong to their respective owners and are used for identification only. Nothing here documents an actual Open Dental product or service.

Supergood acts at the direction of its customers, within the access those customers already have. We respect each customer's agreements with their software vendors, and how those agreements apply to a customer's use is a determination the customer makes. If the vendor offers an official API, we highly recommend it.

Supergood builds managed API access to enterprise software for customers on request, scoped to each customer's own licensing and entitlements. If your team needs programmatic access to a platform like this, schedule an integration assessment to discuss options.

Ready to get a real API?