Occlusogram Upper Keypoints
POST /occlusogram-upper-points
Detects keypoints on upper arch dental model images for occlusogram analysis and tooth position mapping.

Image Type: Upper Dental Model Photograph | Tags: Keypoints Upper Arch Occlusogram
Request Parameters​
| Parameter | Type | Required | Description |
|---|---|---|---|
PatientID | string | ✅ | Unique patient identifier |
TimeStamp | string | ✅ | Analysis session timestamp |
ImageName | string | ✅ | Full URL to the image |
Example Request​
curl -X POST \
https://api.annie-insights.com/api/v2/occlusogram-upper-points \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"PatientID":"P-001","TimeStamp":"2026-05-24","ImageName":"https://example.com/upper.jpg"}'
Sample Response​
{
"Version": "2024.2.0",
"PatientID": "P-001",
"Teeth": {
"m1_rgt_up": {"missing": false, "centroid": [277.2, 260.8], "t01": [253.1, 311.1]},
"p2_rgt_up": {"missing": true, "centroid": [304.0, 212.0]}
},
"CatenaryPoints": {"t25": [253.1, 311.1], "t27": [516, 8]},
"OutputImageUrl": "https://annieapistorage.blob.core.windows.net/..."
}