Skip to main content

Conditions List

Returns a list of conditions and medications typically available for treatment through Appendix, organized by category.

This is a representative sample, not an exhaustive list. Inclusion of a condition or medication does not guarantee a prescription — medications listed may not be appropriate for every patient, and all prescriptions and medical decisions are at the discretion of the reviewing Appendix physician.

GET/api/v1/config/conditions

Parameters

This endpoint takes no parameters.

Request example

curl
curl "https://api.appendix.com/api/v1/config/conditions"

Response example

Returns an array of categories, each containing conditions with their available medications.

[
  {
    "name": "RESPIRATORY",
    "conditions": [
      {
        "name": "Asthma",
        "medications": [
          "albuterol",
          "budesonide",
          "fluticasone",
          "mometasone",
          "beclomethasone",
          "salmeterol",
          "montelukast",
          "zafirlukast",
          "ipratropium"
        ]
      },
      {
        "name": "COPD",
        "medications": ["albuterol", "ipratropium", "budesonide", "fluticasone", "salmeterol", "tiotropium"]
      },
      {
        "name": "Acute bronchitis",
        "medications": ["albuterol", "guaifenesin", "benzonatate", "doxycycline", "azithromycin"]
      }
    ]
  },
  {
    "name": "CARDIOVASCULAR",
    "conditions": [
      {
        "name": "Hypertension",
        "medications": ["lisinopril", "losartan", "amlodipine", "metoprolol", "..."]
      }
    ]
  }
]

Response schema

FieldTypeDescription
namestringCategory name (e.g., "RESPIRATORY", "CARDIOVASCULAR")
conditions[].namestringCondition name (e.g., "Asthma")
conditions[].medicationsstring[]Available medications for this condition

For a browsable, searchable version of the conditions list, see the Conditions guide page.