Terminology - Standardize Procedure
POST /terminology/v1/standardize/procedure
Standardize a procedure. May return reference codings from:
- ICD-10-PCS
- ICD-9-CM-Procedure
- HCPCS
- CDT
- SNOMED
See the Standardize API Overview for general principles that apply to all Standardize API operations.
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.
Child Fields
coding.system
string
The source code system (as a URL).
Example
Sample Input
{
"display": "appendix excision"
}
Sample Response
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "80146002",
"display": "Excision of appendix (procedure)"
}
]
}
For additional examples, or to try out the API live, see the Developer Portal Sandbox