APIs

RxNorm API

getSourceTypes

Information returned
Vocabulary sources
Service domain
https://rxnav.nlm.nih.gov
HTTP request
GET  /REST/sourcetypes.xml

Description

Get the vocabulary source abbreviations (SABs).

Scope

Current: concepts in the current RxNorm data set that have an atom with SUPPRESS=N

Parameters

ParameterLocationUseDescriptionDefault
formatPathOptional

Notation for results

One of:
.xml
Get results in XML
.json
Get results in JSON
.xml

Note that HTTP requires that query parameters be "URL encoded". For full information on URL encoding, please refer to IETF RFC 3986, "Uniform Resource Identifier".

Output structure

Results are available as either XML or JSON.

  • The XML result has the root element rxnormdata. It is described in the XML Schema for the RxNorm API; the relevant element structure is summarized below. Elements that would be empty might be left out.

  • The JSON result is an object {...}, analogous to the content of the XML rxnormdata. Fields that might occur multiple times in the XML are expressed as an array. Fields that would be empty might be null or left out. Numbers are expressed as strings.

Both XML and JSON results follow the same outline:

rxnormdata
Root element in XML, or anonymous object in JSON
sourceTypeList
sourceName (array)
Source vocabulary

Example: Sources

XML: https://rxnav.nlm.nih.gov/REST/sourcetypes

JSON: https://rxnav.nlm.nih.gov/REST/sourcetypes.json

An XML result is shown below.

<rxnormdata>
    <sourceTypeList>
        <sourceName>ATC</sourceName>
        <sourceName>CVX</sourceName>
        <sourceName>DRUGBANK</sourceName>
        <sourceName>GS</sourceName>
        <sourceName>MDDB</sourceName>
        <sourceName>MMSL</sourceName>
        <sourceName>MMX</sourceName>
        <sourceName>MSH</sourceName>
        <sourceName>MTHCMSFRF</sourceName>
        <sourceName>MTHSPL</sourceName>
        <sourceName>NDDF</sourceName>
        <sourceName>RXNORM</sourceName>
        <sourceName>SNOMEDCT_US</sourceName>
        <sourceName>USP</sourceName>
        <sourceName>VANDF</sourceName>
    </sourceTypeList>
</rxnormdata>