Durations Physiological V5

DurationsPhysiologicalV5.xsd

Physiological v5 API Specification 1.3.pdf

Header

The license key is passed through the header. Enter your license key here to use this test form.

Required Fields
valid values: comma separated string
Optional Fields
valid values: icd10cm, icd10who, icd10pcs, icd9cm, cpt (if your license allows)
valid values: true, false (default)

Example jQuery

var uri = "https://api.mdguidelines.com/api/v5/durations/physiological"; uri += "?"; uri += "medicalCodes=354.0"; uri += "&medicalCodeType=icd9cm"; uri += "&showTopics=true"; $.ajax({ url: uri, type: 'GET', dataType: 'json', headers: { 'RG-LICENSE-KEY': 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', }, success: function (data) { handleData(data) }, error: function (xhr, status, error) { handleError(xhr, status, error) } })