NLM logo

We welcome your feedback on our customer service form. Please use "UMLS REST API feedback" in your subject line.

Check out the Postman sample collection to help you get started using the UMLS REST API.

API Terms of Service

Retrieving UMLS Concept Information

URIs | Query Parameters | Sample Output

URIs with /CUI support the following use cases:

Note that ‘current’ in the URI can always be used to search against the latest UMLS publication.
You may use any valid UMLS release back to 2008AA in your URI if you would like to search against a particular version of the UMLS.

URIs

The base URI is https://uts-ws.nlm.nih.gov/rest

Sample URI Description Returned JSON Object classType
/content/current/CUI/C0009044 Retrieves CUI Concept
/content/current/CUI/C0009044/atoms Retrieve atoms in a CUI Atom
/content/current/CUI/C0009044/definitions Retrieve CUI definitions Definition
/content/current/CUI/C0009044/relations Retrieve CUI relations ConceptRelation

Query Parameters

Parameter name Required? Y/N Description Valid Values Default value Usage Note
apiKey Y An API key is required for each call to the API. Visit your UTS profile to obtain your API key. n/a n/a n/a

Sample Output

The default for calls under /CUI/{CUI} is to return UMLS CUIs.

Sample output for https://uts-ws.nlm.nih.gov/rest/content/current/CUI/C0009044?apiKey=YOUR_APIKEY…

{
    "pageSize": 25,
    "pageNumber": 1,
    "pageCount": 1,
    "result": {
        "classType": "Concept",
        "ui": "C0009044",
        "suppressible": false,
        "dateAdded": "09-30-1990",
        "majorRevisionDate": "08-18-2015",
        "status": "R",
        "semanticTypes": [
            {
                "name": "Injury or Poisoning",
                "uri": "https://uts-ws.nlm.nih.gov/rest/semantic-network/2015AB/TUI/T037"
            }
        ],
        "atomCount": 63,
        "attributeCount": 0,
        "cvMemberCount": 0,
        "atoms": "https://uts-ws.nlm.nih.gov/rest/content/2015AB/CUI/C0009044/atoms",
        "definitions": "NONE",
        "relations": "https://uts-ws.nlm.nih.gov/rest/content/2015AB/CUI/C0009044/relations",
        "defaultPreferredAtom": "https://uts-ws.nlm.nih.gov/rest/content/2015AB/CUI/C0009044/atoms/preferred",
        "relationCount": 5,
        "name": "Closed fracture carpal bone"
    }
}