Topics V2

Topics.xsd file

Topic v2 API Specification 1.4.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

Example jQuery

var uri = "https://api.mdguidelines.com/api/v2/topic"; uri += "?topicId=197"; uri += "&sections=all"; uri += "&sectionIdList=true"; OR var uri = "https://api.mdguidelines.com/api/v2/topic"; uri += "?topicUrl=carpal-tunnel-syndrome"; uri += "&sections=all"; uri += "&sectionIdList=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) } })