Skip to main content

Lateral Cephalometric Landmarks

POST /ceph-lateral-points

Detects 169 cephalometric landmarks on lateral cephalometric X-ray images for orthodontic and skeletal analysis.

Lateral Ceph

Image Type: Lateral Cephalometric Radiograph | Tags: 169 Landmarks Lateral Ceph X-ray AI

Request Parameters​

ParameterTypeRequiredDescription
PatientIDstring✅Unique patient identifier
TimeStampstring✅Analysis session timestamp
ImageNamestring✅Full URL to the image

Example Request​

curl -X POST \
https://api.annie-insights.com/api/v2/ceph-lateral-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/lateral.jpg"}'

Sample Response​

{
"Version": "2024.1.0",
"PatientID": "P-001",
"NumberOfPredictedPoints": 169,
"Results": {
"Later_103": {"x_coordinate": 760, "y_coordinate": 549},
"Later_25": {"x_coordinate": 813, "y_coordinate": 530},
"Later_52": {"x_coordinate": 436, "y_coordinate": 644}
},
"OutputImageUrl": "https://annieapistorage.blob.core.windows.net/..."
}