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 Open Dental to Google Sheets

API & Integrations3 min read4/19/2026

An open dental google sheets integration allows you to automatically pull data from your practice management software into a spreadsheet. If you find yourself manually exporting reports from the Reports module to analyze production, collections, or patient trends, this integration can automate that process, saving your team hours of manual data entry every week.

By using the official Open Dental API, you can securely fetch data and populate a Google Sheet, creating a live dashboard that updates without you needing to touch the software.

Prerequisites

Before you begin, ensure you have the following requirements met:

  1. API Access: You must have an active eServices subscription. API access is a paid feature; contact Open Dental to confirm your tier and enable the necessary permissions.
  2. Developer Portal Access: You need a Developer API Key. If you are hiring a developer or using a third-party service, they must obtain this by contacting vendor.relations@opendental.com.
  3. eConnector: Your office must have the eConnector service installed and running on your server.
  4. Enable API: In Open Dental, go to Setup > Advanced Setup > API. Ensure the Enabled checkbox is checked. You will also generate a Customer API Key here, which is required for authentication.

Implementation

To connect to Google Sheets, you will need a small script (typically running in a cloud environment like Google Apps Script or a Node.js server) to act as the bridge. The script will request data from the Open Dental API and then push it to your Google Sheet.

The Open Dental API uses Basic Authentication. You must include your Developer API Key and Customer API Key in the request header.

Here is a simplified example using Node.js to fetch patient data:

const axios = require('axios');

// Replace with your actual keys and server details
const devKey = 'YOUR_DEVELOPER_KEY';
const custKey = 'YOUR_CUSTOMER_KEY';
const baseUrl = 'https://{serverIP}:{port}/api/v1/';

async function getPatients() {
  try {
    const response = await axios.get(`${baseUrl}patients`, {
      headers: {
        'Authorization': `ODFHIR ${devKey}/${custKey}`,
        'Content-Type': 'application/json'
      }
    });
    console.log(response.data);
  } catch (error) {
    console.error('Error fetching data:', error.message);
  }
}

getPatients();

Once you have the data, you can use the Google Sheets API to append these rows to your spreadsheet.

Common Errors

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?

Related Articles

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.