Terminology - Standardize Medication
POST /terminology/v1/standardize/medication
Standardize a medication code. May return reference codings from:
- RxNorm
- NDC
- CVX
See the Standardize API Overview for general principles that apply to all Standardize API operations.
Contents
Body Parameters
code
string
Code value. Either code or display is required.
display
string
Display string. Either code or display is required.
system
string
The source code system (as a name or URL).
targetSystem
string
The desired code system (as a name or URL).
Response Fields
coding
collection
List of matching code values.
coding.code
string
Code value.
coding.system
string
The source code system (as a URL).
coding.display
string
Display string.
Example
Try It
Try out the operations, with examples, in the Developer Portal Sandbox.
Try out the operations, with examples, in the Developer Portal Sandbox.
Sample Input
{
"display": "Jentadueto extended (linagliptin 2.5 / metFORMIN 1000mg)"
}
Sample Response
{
"coding": [
{
"system": "http://www.nlm.nih.gov/research/umls/rxnorm",
"code": "1796093",
"display": "linagliptin 2.5 MG / metformin hydrochloride 1000 MG Extended Release Oral Tablet [Jentadueto]"
}
]
}
For additional examples, or to try out the API live, see the Developer Portal Sandbox