Products
Claims
Medical Forms
Get the Medical form questions
This is for showing the required medical questions and presenting it to employees
GET
/
medical-forms
Get the Medical form questions
Copy
curl --request GET \
--url https://staging.yasmina.ai/api/v1/medical/medical-forms \
--header 'Authorization: Bearer <token>'
Copy
{
"general_health_information": {
"allergies": {
"question": "Do you have any known allergies?",
"choices": [
"Yes",
"No"
]
},
"current_medications": {
"question": "Are you currently taking any medications?",
"choices": [
"Yes",
"No"
]
},
"hospitalizations": {
"question": "Have you been hospitalized in the last 5 years?",
"choices": [
"Yes",
"No"
]
},
"pre_existing_conditions": {
"question": "Do you have any pre-existing medical conditions?",
"choices": [
"Yes",
"No"
]
}
},
"surgical_history": {
"past_surgeries": {
"question": "Have you ever had surgery?",
"choices": [
"Yes",
"No"
]
},
"surgery_complications": {
"question": "Have you had any complications related to surgeries?",
"choices": [
"Yes",
"No"
]
}
},
"cardiovascular_health": {
"conditions": {
"question": "Have you ever been diagnosed with any of the following conditions?",
"options": [
"High Blood Pressure",
"Heart Disease",
"Stroke",
"None of the above"
]
},
"chest_pain_or_breathlessness": {
"question": "Do you experience chest pain or shortness of breath?",
"choices": [
"Yes",
"No"
]
},
"heart_procedures": {
"question": "Have you undergone any heart-related treatments or procedures (e.g., angioplasty, bypass surgery)?",
"choices": [
"Yes",
"No"
]
}
},
"chronic_conditions": {
"diagnoses": {
"question": "Have you been diagnosed with any of the following?",
"options": [
"Diabetes",
"Asthma",
"Chronic Kidney Disease",
"Liver Disease",
"Cancer",
"None of the above"
]
}
},
"lifestyle_and_habits": {
"smoking": {
"question": "Do you smoke or use tobacco products?",
"choices": [
"Yes",
"No"
]
},
"alcohol_consumption": {
"question": "Do you consume alcohol?",
"choices": [
"Yes",
"No"
]
},
"physical_activity": {
"question": "Do you engage in regular physical activity?",
"choices": [
"Yes",
"No"
]
},
"family_history": {
"question": "Do you have a family history of any major medical conditions (e.g., heart disease, diabetes, cancer)?",
"choices": [
"Yes",
"No"
]
}
},
"additional_information": {
"other_medical_info": {
"question": "Is there any other medical information that you believe we should be aware of?",
"choices": [
"Yes",
"No"
]
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Success
The response is of type object
.
Get the Medical form questions
Copy
curl --request GET \
--url https://staging.yasmina.ai/api/v1/medical/medical-forms \
--header 'Authorization: Bearer <token>'
Copy
{
"general_health_information": {
"allergies": {
"question": "Do you have any known allergies?",
"choices": [
"Yes",
"No"
]
},
"current_medications": {
"question": "Are you currently taking any medications?",
"choices": [
"Yes",
"No"
]
},
"hospitalizations": {
"question": "Have you been hospitalized in the last 5 years?",
"choices": [
"Yes",
"No"
]
},
"pre_existing_conditions": {
"question": "Do you have any pre-existing medical conditions?",
"choices": [
"Yes",
"No"
]
}
},
"surgical_history": {
"past_surgeries": {
"question": "Have you ever had surgery?",
"choices": [
"Yes",
"No"
]
},
"surgery_complications": {
"question": "Have you had any complications related to surgeries?",
"choices": [
"Yes",
"No"
]
}
},
"cardiovascular_health": {
"conditions": {
"question": "Have you ever been diagnosed with any of the following conditions?",
"options": [
"High Blood Pressure",
"Heart Disease",
"Stroke",
"None of the above"
]
},
"chest_pain_or_breathlessness": {
"question": "Do you experience chest pain or shortness of breath?",
"choices": [
"Yes",
"No"
]
},
"heart_procedures": {
"question": "Have you undergone any heart-related treatments or procedures (e.g., angioplasty, bypass surgery)?",
"choices": [
"Yes",
"No"
]
}
},
"chronic_conditions": {
"diagnoses": {
"question": "Have you been diagnosed with any of the following?",
"options": [
"Diabetes",
"Asthma",
"Chronic Kidney Disease",
"Liver Disease",
"Cancer",
"None of the above"
]
}
},
"lifestyle_and_habits": {
"smoking": {
"question": "Do you smoke or use tobacco products?",
"choices": [
"Yes",
"No"
]
},
"alcohol_consumption": {
"question": "Do you consume alcohol?",
"choices": [
"Yes",
"No"
]
},
"physical_activity": {
"question": "Do you engage in regular physical activity?",
"choices": [
"Yes",
"No"
]
},
"family_history": {
"question": "Do you have a family history of any major medical conditions (e.g., heart disease, diabetes, cancer)?",
"choices": [
"Yes",
"No"
]
}
},
"additional_information": {
"other_medical_info": {
"question": "Is there any other medical information that you believe we should be aware of?",
"choices": [
"Yes",
"No"
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.