TMJ Cross-Sectional Findings
POST /tmj-xsectional
Analyzes TMJ (temporomandibular joint) cross-sectional images for findings and abnormalities detection.

Image Type: TMJ Cross-Sectional Image | Tags: Detection TMJ Analysis Cross-sectional
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/tmj-xsectional \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"PatientID":"P-001","TimeStamp":"2026-05-24","ImageName":"https://example.com/tmj.jpg"}'
Sample Response​
{
"PatientID": "P-001",
"TimeStamp": "2026-05-24",
"ImageName": "tmj.jpg",
"Results": {
"Finding": "No TMJ findings detected in this image"
}
}