API Reference

Insurance Plans

🚧

Supported integrations

For now, insurance plans are only supported for Dentrix, Dentrix Enterprise, Eaglesoft, and Open Dental.

Overview

Insurance plans provides details about all the plans a practice accepts, and provides a list of patients subscribed to that plan.

If you want to see coverage details for a specific patient, use the view patient endpoint with the include insurance_coverage parameter.

Example use cases

  • View a list of accepted insurance plans and display them during patient registration.
  • Use the payer information to accurately file claims.
  • View all the practice's patients who are subscribed to a specific insurance plan.

Sample response

{
  "code": false,
  "description": "Description",
  "error": "Error",
  "data": {
    "id": 18,
    "payer_id": "87726",
    "name": "United Healthcare",
    "address": "123 Law St",
    "address2": "85335, North East",
    "city": "New York",
    "state": "NY",
    "zip_code": "54700",
    "country_code": "US",
    "group_num": "12345",
    "employer_name": "Walmart",
    "foreign_id": "1",
    "patient_coverages": [
      {
        ...
      },
    ],
    "subscribers": [
      {
        ...
      },
    ]
  },
  "count": 2
}