opendentalsupport.com is an independent community resource. We are NOT affiliated with, endorsed by, or sponsored by Open Dental Software, Inc. Open Dental® is a registered trademark of Open Dental Software, Inc.

Connecting Third-Party Apps to Open Dental

API & Integrations4 min read3/27/2026

If you are tired of manually entering patient data into your marketing, patient communication, or analytics software, you need a way to automate the process. Connecting third-party apps to Open Dental allows your external tools to securely read or update information in your practice management software without you having to lift a finger.

The Open Dental API acts as a secure bridge between your database and authorized external applications. Whether you want to sync patient demographics, automate appointment reminders, or pull production reports into a custom dashboard, the API makes it possible.

Prerequisites

Before you can connect any external software, you must ensure your practice is prepared.

  1. Developer Portal Access: If you are the developer, you must contact vendor.relations@opendental.com to request access to the Developer Portal. This is where you generate your unique Developer API Key.
  2. Customer API Key: Once the developer has a key, they generate a specific Customer API Key for your office. You will enter this key into your Open Dental software.
  3. eConnector: For most remote integrations, you must have the Open Dental eConnector service installed and running on your server. This service facilitates secure communication between your local database and the outside world.
  4. API Setup in Open Dental:
    • Go to Setup > Advanced Setup > API.
    • Check the Enabled box.
    • Click Add Key in the lower-left corner.
    • Paste the Customer API Key provided by the developer and click OK.
    • Ensure the permissions granted to that key match the needs of the application.

Implementation

To interact with the API, your application must send requests to the Open Dental API endpoint. The base URL for the remote API is https://api.opendental.com/api/v1/.

All requests require an Authorization header using Basic Auth, formatted as ODFHIR {DeveloperKey}/{CustomerKey}.

Here is a simple example using Node.js to fetch a list of patients:

const axios = require('axios');

const developerKey = 'YOUR_DEVELOPER_KEY';
const customerKey = 'YOUR_CUSTOMER_KEY';
const auth = Buffer.from(`${developerKey}/${customerKey}`).toString('base64');

async function getPatients() {
  try {
    const response = await axios.get('https://api.opendental.com/api/v1/patients', {
      headers: {
        'Authorization': `Basic ${auth}`,
        'Content-Type': 'application/json'
      }
    });
    console.log(response.data);
  } catch (error) {
    console.error('Error fetching patients:', error.response ? error.response.data : error.message);
  }
}

getPatients();

Common Errors

When connecting third-party apps to Open Dental, you may encounter these common HTTP status codes:

Limitations

Don't want to build your own dashboard? DentalCanvas already connects to your Open Dental data and shows you everything in a visual interface.


This article is provided by opendentalsupport.com, an independent community resource. We are not affiliated with Open Dental Software, Inc.

Skip the API. Get a Dashboard.

Why build a custom integration when DentalCanvas already reads your Open Dental data and shows you everything in a visual dashboard?

Try DentalCanvas

Was this article helpful?

opendentalsupport.com is an independent community resource. We are NOT affiliated with, endorsed by, or sponsored by Open Dental Software, Inc. Open Dental® is a registered trademark of Open Dental Software, Inc.