Topic Search V3

TopicSearchV3.xsd

Topic Search v3 API Specification 1.1.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/v3/topicsearch/"; uri += "carpal"; uri += "&rows=10"; uri += "&start=0"; uri += "&role=DEFAULT"; uri = uri.replace("&", "?"); $.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) } })