Clinical Findings
POST /clinical-images
Detects clinical findings in dental photographs — decay, orthodontic indicators, restorations, periodontal conditions, and brackets using YOLO deep learning object detection.

Image Type: Intra-oral Photographs (Right, Front, Left, Upper, Lower)
Tags: Detection Intra-oral Photos AI
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/clinical-images \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"PatientID": "P-001",
"TimeStamp": "2026-05-24",
"ImageName": "https://example.com/image.jpg"
}'
Sample Response​
{
"Version": "2024.1.0",
"PatientID": "P-001",
"TimeStamp": "2026-05-24",
"ImageName": "a1b2c3d4_clinical.jpg",
"ImageContents": {
"decay": 2,
"restoration": 1
},
"Results": {
"decay": [
{"ClassName": "decay", "TopLeft": [120, 80], "BottomRight": [200, 160]},
{"ClassName": "decay", "TopLeft": [450, 200], "BottomRight": [510, 260]}
],
"restoration": [
{"ClassName": "restoration", "TopLeft": [300, 90], "BottomRight": [380, 170]}
]
},
"OutputImageUrl": "https://annieapistorage.blob.core.windows.net/api-output-images/clinical-images/...?se=...&sp=r&sv=...&sr=b&sig=..."
}
tip
The OutputImageUrl is a time-limited Azure Blob SAS URL valid for 72 hours. See Output Images for details.