CodeSystem Resource
GET /terminology/v1/fhir/r4/CodeSystem/
The CodeSystem
Resource describes available code systems and the codes they contain.
Using CodeSystems
Within a code system an individual code has a distinct meaning; the same code may mean different things in other code systems.
Many standard code systems such as ICD-10-CM, HCPCS, NDC, LOINC and others are available in their most recent revision via the Terminology API.
Please see the FHIR documentation for the complete specification of the CodeSystem
Resource. Some common operations are summarized below.
Getting a List of Available CodeSystems
The Terminology API supports search operations on the CodeSystem resource. The following request will retrieve a Bundle
of CodeSystem
Resources available on the server.
Tip
When searching CodeSystems the _summary=true
flag is required.
GET https://api.careevolutionapi.com/terminology/v1/fhir/r4/CodeSystem/?_summary=true
Each available [CODE_SYSTEM_ID]
can be found in Bundle.CodeSystem.entry.resource.id
.
Sample Response
Getting All Codes in a CodeSystem
With a [CODE SYSTEM ID]
, retrieving codes from a CodeSystem
can be done with a simple GET operation.
GET https://api.careevolutionapi.com/terminology/v1/fhir/r4/CodeSystem/[CODE_SYSTEM_ID]
For example the following will get a list of all ICD-10-CM codings as a complete CodeSystem
Resource:
GET https://api.careevolutionapi.com/terminology/v1/fhir/r4/CodeSystem/ICD-10-CM
Sample Response