Treatment Length Estimator
GET /tle
Predicts orthodontic treatment duration using a trained machine learning model based on 11 clinical parameters.

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​
| Parameter | Type | Required | Description |
|---|---|---|---|
p01 | string | ✅ | Age |
p02 | string | ✅ | Gender |
p03 | string | ✅ | Malocclusion class |
p04 | string | ✅ | Crowding severity |
p05 | string | ✅ | Spacing |
p06 | string | ✅ | Overjet (mm) |
p07 | string | ✅ | Overbite |
p08 | string | ✅ | Crossbite |
p09 | string | ✅ | Open bite |
p10 | string | ✅ | Extraction required |
p11 | string | ✅ | 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.