Craniofacial Classifier
POST /classifier
Classifies dental and craniofacial images by category — identifies image type, orientation, and clinical relevance using AI recognition.

Image Type: Any Dental Image | Tags: Classification Image Recognition 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/classifier \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"PatientID":"P-001","TimeStamp":"2026-05-24","ImageName":"https://example.com/photo.jpg"}'
Sample Response​
{
"PatientID": "P-001",
"TimeStamp": "2026-05-24",
"ImageName": "photo.jpg",
"Classification": {
"category": "Intra-oral Frontal",
"confidence": 0.96
}
}
No Output Image
This endpoint returns classification results only — no annotated output image is generated.