Crosswalk V1

CrosswalkV1.xsd

Crosswalk v1 API Specification 1.2.pdf

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

Test Form

* (asterisk) indicates required parameter
** (double asterisk) indicates one of these fields must have a value

Example jQuery

var uri = "https://api.mdguidelines.com/api/v1/crosswalk"; uri += "?state=acoem"; uri += "&diagnosiscode=354.0"; uri += "&diagnosiscodetype=icd9cm"; uri += "&treatmentcode="; uri += "&phase=acute"; uri += "&onlyprimary=true"; uri += "&start=0"; uri += "&rows=10"; $.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) } })