GET api/ICD10?ICD10Code={ICD10Code}

Retrieves an ICD10 code from the database.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ICD10Code

Any ICD10 Code, either formatted (with period) or unformatted

string

Required

Body Parameters

None.

Response Information

Resource Description

ICD10 Model Object (Json Serializable)

ICD10
NameDescriptionTypeAdditional information
ICDCode

string

None.

ICD10Code

string

None.

ICD10Plain

string

None.

IsHeader

boolean

None.

CodeType

ICDCodeTypes

None.

RowID

integer

None.

Description

string

None.

ShortDescription

string

None.

LastModTime

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ICDCode": "sample string 2",
  "ICD10Code": "sample string 2",
  "ICD10Plain": "sample string 3",
  "IsHeader": true,
  "CodeType": 0,
  "RowID": 5,
  "Description": "sample string 6",
  "ShortDescription": "sample string 7",
  "LastModTime": "2025-08-02T08:32:50.9306365-07:00"
}

application/xml, text/xml

Sample:
<ICD10 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IsHeader>true</IsHeader>
  <CodeType>Unknown</CodeType>
  <RowID>5</RowID>
  <Description>sample string 6</Description>
  <ShortDescription>sample string 7</ShortDescription>
  <LastModTime>2025-08-02T08:32:50.9306365-07:00</LastModTime>
  <ICDCode>sample string 2</ICDCode>
  <ICD10Code>sample string 2</ICD10Code>
  <ICD10Plain>sample string 3</ICD10Plain>
</ICD10>