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.
URIs | Query Parameters | Sample Output
URIs with /parents or /children 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.
The base URI is https://uts-ws.nlm.nih.gov/rest
Sample URI | Description | Returned JSON Object classType |
---|---|---|
/content/current/AUI/A10134087/parents | Retrieves parents of a UMLS atom | Atom |
/content/current/AUI/A10134087/children | Retrieves children of a UMLS atom | Atom |
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 |
pageNumber | N | Whole number that specifies which page of results to fetch. | 1,2,3, etc | 1 | n/a |
pageSize | N | Whole number that specifies the number of results to include per page. | 1,2,3, etc | 25 | n/a |
Sample output for https://uts-ws.nlm.nih.gov/rest/content/current/AUI/A10134087/parents?apiKey=YOUR_APIKEY…
{
"pageSize" : 25,
"pageNumber" : 1,
"pageCount" : 1,
"result" : [{
"classType" : "Atom",
"ui" : "A19720766",
"suppressible" : "false",
"obsolete" : "false",
"rootSource" : "HL7V3.0",
"termType" : "CSY",
"code" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/source/HL7V3.0/RouteOfAdministration",
"concept" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/CUI/C0013153",
"sourceConcept" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/source/HL7V3.0/2.16.840.1.113883.5.112",
"sourceDescriptor" : "NONE",
"attributes" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/AUI/A19720766/attributes",
"parents" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/AUI/A19720766/parents",
"ancestors" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/AUI/A19720766/ancestors",
"children" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/AUI/A19720766/children",
"descendants" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/AUI/A19720766/descendants",
"relations" : "https://uts-ws.nlm.nih.gov/rest/content/2016AA/AUI/A19720766/relations",
"name" : "RouteOfAdministration",
"language" : "ENG"
}
]
}