Scoring

Description

Returns the UDVA score and SE predictability score for a single laser eye treatment using Zubisoft's unqiue case complexity based scoring method (benchmarking).

LASIK scoring is available for (1m and 3m):
- Alcon WaveLight EX500 (WFO and CONTOURA)
- Alcon WaveLight Eye-Q (WFO)
- Johnson and Johnson VISX S4 (Conventional, WaveScan and iDesign)
- Schwind Amaris Platform (aspheric aberration-free)
- ZEISS MEL 80 (aspheric)
- ZEISS MEL 90 (aspheric, only 1m)
- NIDEK EC-5000 (aspheric)

PRK scoring is available for (1m and 3m):
- Alcon WaveLight EX500 (WFO and CONTOURA)
- Alcon WaveLight Eye-Q (WFO)
- Johnson and Johnson VISX S4 (Conventional and WaveScan)
- Schwind Amaris Platform (aspheric aberration-free)

Trans-PRK scoring is available for (1m and 3m):
- Schwind Amaris Platform (aspheric aberration-free)

Background
Zubisoft's unique benchmarking algorithm can compare the visual and refractive outcome of every individual treatment made with cases from the reference database that share the same preoperative and operational characteristics (laser, method, refraction, age, optical zone). With this method treatments that share the same complexity (case complexity based) are compared. This produces a true image of the quality of surgery. The result is a score from 0 (poor) to 100 (perfect). A score of 50 means average. Because of it's nature, scores can be averaged for a series of treatments or a particular method. The average scores can be compared between surgeons allowing outcome quality ranking.

URL

POST https://www.zubisoft.com/api/scoring

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):
  • ID=2 (Alcon WaveLight Eye-Q)
  • ID=3 (Alcon WaveLight EX500)
  • ID=6 (Johnson & Johnson VISX S4)
  • ID=10 (Schwind Amaris 500E)
  • ID=11 (Schwind Amaris 750S)
  • ID=12 (Schwind Amaris 1050RS)
  • ID=15 (ZEISS Mel 80)
  • ID=16 (ZEISS Mel 90)
  • ID=21 (NIDEK EC-5000)
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
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_optical_zone Float 6.5 in mm
age Integer 39
method String Supported methods (use exact terms/wording):
  • LASIK
  • PRK
  • Trans-PRK
Please note that not all methods may return a scoring (see description above)
laser_mode String Supported laser modes (use exact terms/wording):
  • Alcon lasers: WFO, CONTOURA
  • VISX lasers: Conventional, Wavefront WaveScan, Wavefront iDesign
  • Schwind lasers: Aspheric aberration-free
  • ZEISS excimer lasers: Aspheric
  • NIDEK laser: Aspheric
Please note that not all laser modes may return a scoring (see description above)
udva_post Float 0.8 The postoperative unaided visual acuity in decimal format (eg. 0.8 = 20/25)
manifest_sphere_post Float 0 The postoperative manifest sphere in D
manifest_cylinder_post Float 0.25 The postoperative manifest cylinder in D. Can be in plus or minus format
review_time Integer 1 The follow-up used for benchmarking: 1 month or 3 months. Please note that not all reviews may return a scoring.

{
    "laser": 3,
    "manifest_sphere_pre": -4.50,
    "manifest_cylinder_pre": -0.25,
    "target_sphere": 0,
    "target_cylinder": 0,
    "laser_optical_zone": 6.5,
    "age": 38,
    "method": "LASIK",
    "laser_mode": "WFO",
    "udva_post": 0.8,
    "manifest_sphere_post": 0,
    "manifest_cylinder_post": 0.25,
    "review_time": 1
}



curl --location --request POST 'https://www.zubisoft.com/api/scoring' \
--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_sphere_pre": -4.50,
    "manifest_cylinder_pre": 0,
    "target_sphere": 0,
    "target_cylinder": 0.13,
    "laser_optical_zone": 6.5,
    "age": 38,
    "method": "LASIK",
    "laser_mode": "WFO",
    "udva_post": 0.8,
    "manifest_sphere_post": 0,
    "manifest_cylinder_post": 0.25,
    "review_time": 3
}'


Response

Your response includes the following values

Name Format Example Comment
score_udva Float 14.3294 This is the UDVA score
score_se Float 66.3718 This is the SE predictability score

{
    "score_udva": 14.3294,
    "score_se": 66.3718
}