+1-833-677-6676 47 W Polk St Suite 251, Chicago, IL 60605 info@hcds.ai
HIPAA Certified
Why Integrate

Your Platform. Our AI.

Bring clinical-grade dental AI to your product — without building models from scratch.

Embed AI Into Your Product

Add dental image analysis, cephalometric tracing, and diagnostic detection directly into your PMS, imaging software, or telehealth application via simple REST calls.

Enterprise-Ready Infrastructure

HIPAA compliant with BAA available, AES-256 encryption, custom rate limits, dedicated API keys, SLA guarantees, and optional on-premise deployment.

Custom Endpoints On Request

Don't see the endpoint you need? We build custom AI models and endpoints for enterprise partners — specialized detection, report generation, and more.

13 Endpoints

Complete Dental AI Endpoint Suite

Every endpoint returns structured JSON with detection coordinates, landmarks, or annotated output images — ready to integrate into your clinical workflow.

Detection Object detection for clinical findings, cavities, restorations, and anomalies
POST

Clinical Findings

/clinical-images

Detect decay, restorations, brackets, and periodontal conditions in intraoral photographs.

POST

Panoramic Findings

/panos-findings

Detect caries, restorations, and dental anomalies on panoramic X-ray radiographs.

POST

TMJ Cross-Sectional

/tmj-findings

Detect temporomandibular joint abnormalities in cross-sectional imaging.

Segmentation Pixel-level tooth boundary detection and mask generation
POST

Frontal Segmentation

/frontal-seg

Segment individual teeth from frontal intraoral photographs.

POST

Panoramic Segmentation

/panos-seg

Segment tooth boundaries on panoramic X-ray radiographs.

POST

Occlusogram Upper Seg.

/upper-occ-seg

Segment upper dental arch teeth from occlusogram images.

POST

Occlusogram Lower Seg.

/lower-occ-seg

Segment lower dental arch teeth from occlusogram images.

Landmark Detection AI-powered cephalometric and dental arch landmark identification
POST

Lateral Ceph Landmarks

/ceph-lateral-points

Detect 169 cephalometric landmarks on lateral cephalometric radiographs.

POST

Frontal Ceph Landmarks

/ceph-frontal-points

Detect 118 cephalometric landmarks on frontal cephalometric radiographs.

POST

Upper Arch Keypoints

/upper-occ-keypoints

Map keypoints on upper dental arch occlusogram images.

POST

Lower Arch Keypoints

/lower-occ-keypoints

Map keypoints on lower dental arch occlusogram images.

Classification & Prediction Image classification, craniofacial analysis, and treatment estimation
POST

Craniofacial Classifier

/dentistry-classifier

Classify dental image type, orientation, and craniofacial characteristics.

GET

Treatment Length Estimator

/tle

Predict orthodontic treatment duration from 11 clinical parameters using ML.

Developer Experience

Simple to Integrate

3 required fields. Structured JSON response. Results in seconds.

# Analyze a dental image
curl -X POST \
  https://api.annie-insights.com/api/v2/clinical-images \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "PatientID": "P-001",
    "TimeStamp": "2026-07-10",
    "ImageName": "https://your-storage.com/xray.jpg"
  }'
import requests

response = requests.post(
    "https://api.annie-insights.com/api/v2/clinical-images",
    headers={
        "Content-Type": "application/json",
        "x-api-key": "YOUR_API_KEY"
    },
    json={
        "PatientID": "P-001",
        "TimeStamp": "2026-07-10",
        "ImageName": "https://your-storage.com/xray.jpg"
    }
)

data = response.json()
print(data["ImageContents"])  # {'decay': 2, 'restoration': 1}
const response = await fetch(
  "https://api.annie-insights.com/api/v2/clinical-images",
  {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      "x-api-key": "YOUR_API_KEY"
    },
    body: JSON.stringify({
      PatientID: "P-001",
      TimeStamp: "2026-07-10",
      ImageName: "https://your-storage.com/xray.jpg"
    })
  }
);

const data = await response.json();
console.log(data.ImageContents); // {decay: 2, restoration: 1}
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("x-api-key", "YOUR_API_KEY");

var payload = new {
    PatientID = "P-001",
    TimeStamp = "2026-07-10",
    ImageName = "https://your-storage.com/xray.jpg"
};

var json = JsonSerializer.Serialize(payload);
var content = new StringContent(json, Encoding.UTF8, "application/json");

var response = await client.PostAsync(
    "https://api.annie-insights.com/api/v2/clinical-images",
    content
);
200 OK ~3s response time
{
  "Version": "2024.1.0",
  "PatientID": "P-001",
  "ImageContents": { "decay": 2, "restoration": 1 },
  "Results": {
    "decay": [
      { "ClassName": "decay", "TopLeft": [120, 80], "BottomRight": [200, 160] }
    ]
  },
  "OutputImageUrl": "https://annieapistorage.blob.core.windows.net/…"
}
Integration Benefits

Built for Developers

Simple REST API

Standard JSON request/response. Just 3 required fields — PatientID, TimeStamp, and ImageName. No complex setup or SDK dependencies required.

Annotated Output Images

Every detection and segmentation endpoint returns an AI-annotated image via Azure SAS URL — ready to display in your UI with no post-processing needed.

Multi-Language Support

Quickstart guides and code samples in Python, JavaScript, C#, and cURL. Works with any HTTP-capable language or framework.

Sandbox for Testing

Free sandbox API key for development and validation. Test against real AI models with rate-limited access before going to production.

Enterprise

Enterprise-Grade Security & Scale

DR. ANNIE™ Insights API is designed for healthcare organizations that require the highest standards of compliance, security, and reliability.

HIPAA Compliant with BAA Business Associate Agreements available. All data encrypted with AES-256.
Custom Rate Limits & SLAs Production keys come with custom throughput limits and uptime SLA guarantees.
Per-Environment API Keys Separate staging and production keys with independent rate limits and monitoring.
On-Premise Deployment For organizations requiring data sovereignty — deploy behind your own firewall.
Data Residency Options Choose your data processing region for compliance with local regulations.
Dedicated Technical Support Priority support channel with direct access to our API engineering team.
API Health Dashboard
99.9% Uptime SLA
<3s Avg Latency
13 AI Endpoints
24/7 Availability
HIPAA AES-256 SOC 2 BAA

Need a Custom Endpoint?

Don't see the endpoint you need? We build custom AI endpoints for enterprise partners — from specialized detection models to custom report generation pipelines.

Custom Detection Models Report Generation API Analytics Dashboards Webhook Integrations
Contact Our API Team
Ready to Integrate?

Bring Dental AI Into Your Platform

Request API access and get your production key. Sandbox available for immediate testing — start integrating in under 5 minutes.