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

Image Type: Lower Dental Model Photograph | Tags: Keypoints Lower 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-lower-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/lower.jpg"}'
Sample Response​
{
"Version": "2024.2.0",
"Teeth": {
"m1_rgt_lo": {"missing": false, "centroid": [281.4, 291.8], "t01": [251.9, 235.5]},
"c_rgt_lo": {"missing": false, "centroid": [382.6, 508.4]}
},
"CatenaryPoints": {"t25": [251.9, 235.5], "t27": [530, 529]},
"OutputImageUrl": "https://annieapistorage.blob.core.windows.net/..."
}