Determine whether the patient meets eligibility criteria.

PRESCRIPTION OBJECT

Prior prescriptions are optional in qualification, but helpful to gather prior to the user entering the test experience. If providing a prescription, your request may include information for contacts, glasses, or both.

If you only have parameters for one eye of a contacts prescription, you should send it to us as a single-eye prescription and we'll take it from there. For example, if you only have parameters for the right eye of a contacts prescription, send "left_eye": null instead of the standard object.

🚧

Selling Contacts?

Visibly must confirm that a patient has worn contacts in the past in order to dispense a new prescription. For this reason, we require that you share your full product list (IDs and brand names) and pass along this information when communicating the patient's prior prescription.

JSON

{
  "user": {
    "birthdate": "1988-01-01",
    "region": "IL"
  },
  "prescriptions": [
    {
      "type": "contacts",
      "verification": "verified",
      "right_eye": {
        "product_key": "example1",
        "sphere": -1.0,
        "cylinder": -0.25,
        "axis": 90,
        "base_curve": 8.7,
        "diameter": 14.1
      },
      "left_eye": {
        "product_key": "example1",
        "sphere": -1.0,
        "cylinder": -0.25,
        "axis": 90,
        "base_curve": 8.7,
        "diameter": 14.1
      }
    },
    {
      "type": "glasses",
      "verification": "unverified",
      "right_eye": {
        "sphere": -1.0,
        "cylinder": -0.25,
        "axis": 90,
        "add": null,
        "pupillary_distance": 30.0
      },
      "left_eye": {
        "sphere": -1.0,
        "cylinder": -0.25,
        "axis": 90,
        "add": null,
        "pupillary_distance": 30.0
      }
    }
  ]
}
{
  "qualifies": true,
  "disqualifications": []
}
Language
Authorization
Click Try It! to start a request and see the response here!