AER

Description

Returns the astigmatic effect ratio (AER) and the loss of astigmatic correction in percentage for a toric IOL that is misaligned (in off-axis position) by a certain degree.

Background
Toric IOL misalignment has dramatic effects on vision. Rotation of 3° decreases the astigmatic correction by 10%, and 10° by 35%, on average about 3.3% loss per degree. A total loss of astigmatic correction is seen at 30° misalignment, sometimes even earlier. Visual results may be worse than preoperatively even with the same magnitude of cylinder correction.

URL

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

Permission

Standard authentication with public key, hashed private key and user key is required.

Parameters

Field Description
axis_misalignment The misalignment in degree

{
    "axis_misalignment": 7
}


    

curl --location --request POST 'https://www.zubisoft.com/api/aer' \
--header 'Content-Type: application/json' \
--header 'X-Public-Key: yourPublicKey' \
--header 'X-Private-Key: hashOfYourPrivateKey' \
--header 'X-User-Key: yourUserKey' \
--data-raw '{
    "axis_misalignment": 7
}'

    

Response

The response includes the following values:

Name Format [Unit] Example Comment
effect_ratio Float 0.83
loss_of_astigmatic_correction Integer [percentage] 17

{
    "effect_ratio": 0.83,
    "loss_of_astigmatic_correction": 17
}