> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yasmina.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the Medical form questions

> This is for showing the required medical questions and presenting it to employees



## OpenAPI

````yaml /medical-api-reference/openapi.json get /medical-forms
openapi: 3.0.1
info:
  title: OpenAPI For SME Medical Insurance
  description: API's that you need to use to request insurance(s) for your clients
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://production.yasmina.ai/api/v1/medical
  - url: https://sandbox.yasmina.ai/api/v1/medical
security:
  - bearerAuth: []
paths:
  /medical-forms:
    get:
      tags:
        - Medical Forms
      summary: Get the Medical form questions
      description: >-
        This is for showing the required medical questions and presenting it to
        employees
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                example:
                  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'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              code:
                type: string
                example: '40101'
              message:
                type: string
                example: Unauthenticated
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````