Durations Physiological V4

DurationsPhysiologicalV4.xsd

Physiological v4 API Specification 1.2.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/v4/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) } })