Clinical Outcome Forecast
Description
Returns an outcome forecast with 4 key performace indices (KPIs) for an individual patient (manifest refraction) and a planned treatment (laser, method, laser mode).
The 4 KPIs are:
- Enhancement rate (percentage of eyes that will require a re-treatment)
- Loss of CDVA (percentage of eyes that will loose 1 or more Snellen lines of corrected-visual acuity)
- SE within 0.5 of emmetropia (percentage of eyes with postoperative SE of 0.5 or less)
- UDVA 20/20 or better (percentage of eyes with uncorrected visual acuity of 20/20 or better)
Please note that extrem or rare conditions may not return a forecast due to a lack of reference data.
Background
The prediction of post-refractive laser surgery visual acuity and refractive outcomes is useful to assess the risks of the surgery and to prepare the patient for any undesired outcome and its consequences (used for informed consent).
The outcome forecast algorithm analyses the results of similar treatments performed over the last 3 years from the very large reference database (400'000 cases). Each parameter influences the calculations.
URL
POST https://www.zubisoft.com/api/outcome_forecast
Permission
Standard authentication with public key, hashed private key and user key is required.
Parameters
Name | Format | Example | Comment |
---|---|---|---|
laser | Integer | 3 | Supported Laser (submit the ID of the Laser):
|
manifest_axis_pre | Integer | 90 | |
manifest_sphere_pre | Float | -2.25 | |
manifest_cylinder_pre | Float | -0.75 | The preoperative manifest cylinder in D. Can be in plus or minus format. |
method | String | LASIK | Supported methods (use exact terms):
Please note that not all methods may return a forecast (see above) |
laser_mode | String | WFO | Supported laser modes (use exact terms):
|
target_sphere | Float | 0 | The target sphere in D, usually 0. |
target_cylinder | Float | 0 | The target cylinder in D. Can be in plus or minus format, usually 0. |
{
"laser": 3,
"manifest_axis_pre": 90,
"manifest_sphere_pre": -2.25,
"manifest_cylinder_pre": -0.75,
"method": "LASIK",
"laser_mode": "WFO",
"target_sphere": 0,
"target_cylinder": 0
}
curl --location --request POST 'https://www.zubisoft.com/api/outcome_forecast' \
--header 'Content-Type: application/json' \
--header 'X-Public-Key: yourPublicKey' \
--header 'X-User-Key: yourUserKey' \
--header 'X-Private-Key: hashOfYourPrivateKey' \
--data-raw '{
"laser": 3,
"manifest_axis_pre": 10,
"manifest_sphere_pre": -4.50,
"manifest_cylinder_pre": -0.25,
"method": "LASIK",
"laser_mode": "WFO",
"target_sphere": -0.07,
"target_cylinder": 0.13
}'
Response
The response includes the following values:
Name | Format | Example | Comment |
---|---|---|---|
risk_of_enhancement | Integer | 2 | Risk for re-treatment in percentage |
risk_of_visual_loss | Integer | 8 | Risk of loss of CDVA in percentage |
se_within_05_emmetropia | Integer | 89 | SE within 0.5D of emmetropia in percentage |
udva_2020_or_better | Integer | 85 | Percentage of eyes with 20/20 vision or better |
{
"risk_of_enhancement": 2,
"risk_of_visual_loss": 8,
"se_within_05_emmetropia": 89,
"udva_2020_or_better": 85
}