Skip to main content

Treatment Length Estimator

GET /tle

Predicts orthodontic treatment duration using a trained machine learning model based on 11 clinical parameters.

TLE

Image Type: N/A (parameter-based) | Tags: Prediction Orthodontics ML

info

This is the only GET endpoint. Parameters are passed as query strings, not JSON body.

Request Parameters​

ParameterTypeRequiredDescription
p01string✅Age
p02string✅Gender
p03string✅Malocclusion class
p04string✅Crowding severity
p05string✅Spacing
p06string✅Overjet (mm)
p07string✅Overbite
p08string✅Crossbite
p09string✅Open bite
p10string✅Extraction required
p11string✅AI difficulty score

Example Request​

curl -H "x-api-key: YOUR_API_KEY" \
"https://api.annie-insights.com/api/v2/tle?p01=14&p02=M&p03=ClassII&p04=Moderate&p05=None&p06=5.2&p07=Deep&p08=None&p09=None&p10=No&p11=3"

Sample Response​

{
"app": "treatment estimator",
"estimate_length": 18.5
}

The estimate_length value represents the predicted treatment duration in months.