Skip to main content

TMJ Cross-Sectional Findings

POST /tmj-xsectional

Analyzes TMJ (temporomandibular joint) cross-sectional images for findings and abnormalities detection.

TMJ

Image Type: TMJ Cross-Sectional Image | Tags: Detection TMJ Analysis Cross-sectional

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/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"
}
}