autoicd-js 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -0
- package/package.json +14 -2
package/README.md
CHANGED
|
@@ -143,6 +143,31 @@ console.log(result.pii_entities); // [{ text: "John Smith", label: "NAME", ... }
|
|
|
143
143
|
|
|
144
144
|
---
|
|
145
145
|
|
|
146
|
+
## Common ICD-10 Codes
|
|
147
|
+
|
|
148
|
+
The SDK can code any of the 74,000+ ICD-10-CM codes. Here are some of the most commonly coded conditions:
|
|
149
|
+
|
|
150
|
+
| Condition | ICD-10 Code | Description |
|
|
151
|
+
|-----------|-------------|-------------|
|
|
152
|
+
| [Hypertension](https://autoicdapi.com/icd10/condition/hypertension) | [I10](https://autoicdapi.com/icd10/I10) | Essential (primary) hypertension |
|
|
153
|
+
| [Type 2 Diabetes](https://autoicdapi.com/icd10/condition/diabetes) | [E11.9](https://autoicdapi.com/icd10/E11.9) | Type 2 diabetes mellitus without complications |
|
|
154
|
+
| [Depression](https://autoicdapi.com/icd10/condition/depression) | [F32.9](https://autoicdapi.com/icd10/F32.9) | Major depressive disorder, single episode, unspecified |
|
|
155
|
+
| [Anxiety](https://autoicdapi.com/icd10/condition/anxiety) | [F41.1](https://autoicdapi.com/icd10/F41.1) | Generalized anxiety disorder |
|
|
156
|
+
| [Low Back Pain](https://autoicdapi.com/icd10/condition/back-pain) | [M54.5](https://autoicdapi.com/icd10/M54.5) | Low back pain |
|
|
157
|
+
| [COPD](https://autoicdapi.com/icd10/condition/copd) | [J44.9](https://autoicdapi.com/icd10/J44.9) | Chronic obstructive pulmonary disease, unspecified |
|
|
158
|
+
| [Heart Failure](https://autoicdapi.com/icd10/condition/heart-failure) | [I50.9](https://autoicdapi.com/icd10/I50.9) | Heart failure, unspecified |
|
|
159
|
+
| [UTI](https://autoicdapi.com/icd10/condition/urinary-tract-infection) | [N39.0](https://autoicdapi.com/icd10/N39.0) | Urinary tract infection, site not specified |
|
|
160
|
+
| [Pneumonia](https://autoicdapi.com/icd10/condition/pneumonia) | [J18.9](https://autoicdapi.com/icd10/J18.9) | Pneumonia, unspecified organism |
|
|
161
|
+
| [Atrial Fibrillation](https://autoicdapi.com/icd10/condition/atrial-fibrillation) | [I48.91](https://autoicdapi.com/icd10/I48.91) | Unspecified atrial fibrillation |
|
|
162
|
+
| [Obesity](https://autoicdapi.com/icd10/condition/obesity) | [E66.01](https://autoicdapi.com/icd10/E66.01) | Morbid (severe) obesity due to excess calories |
|
|
163
|
+
| [GERD](https://autoicdapi.com/icd10/condition/gerd) | [K21.9](https://autoicdapi.com/icd10/K21.9) | Gastro-esophageal reflux disease without esophagitis |
|
|
164
|
+
| [Hypothyroidism](https://autoicdapi.com/icd10/condition/hypothyroidism) | [E03.9](https://autoicdapi.com/icd10/E03.9) | Hypothyroidism, unspecified |
|
|
165
|
+
| [CKD](https://autoicdapi.com/icd10/condition/chronic-kidney-disease) | [N18.9](https://autoicdapi.com/icd10/N18.9) | Chronic kidney disease, unspecified |
|
|
166
|
+
|
|
167
|
+
Browse all 74,000+ codes in the [ICD-10-CM Code Directory](https://autoicdapi.com/icd10) or find codes by [condition](https://autoicdapi.com/icd10/condition).
|
|
168
|
+
|
|
169
|
+
---
|
|
170
|
+
|
|
146
171
|
## Use Cases
|
|
147
172
|
|
|
148
173
|
- **EHR / EMR Integration** — Auto-code clinical notes as providers type, reducing manual coding burden
|
|
@@ -246,6 +271,11 @@ import type {
|
|
|
246
271
|
|
|
247
272
|
- [AutoICD API](https://autoicdapi.com) — Homepage and API key management
|
|
248
273
|
- [API Documentation](https://autoicdapi.com/docs) — Full REST API reference
|
|
274
|
+
- [ICD-10-CM Code Directory](https://autoicdapi.com/icd10) — Browse all 74,000+ diagnosis codes
|
|
275
|
+
- [ICD-10 Codes by Condition](https://autoicdapi.com/icd10/condition) — Find codes for common conditions
|
|
276
|
+
- [Python SDK](https://pypi.org/project/autoicd/) — `pip install autoicd`
|
|
277
|
+
- [MCP Server](https://www.npmjs.com/package/autoicd-mcp) — For Claude Desktop, Cursor, VS Code
|
|
278
|
+
- [SNOMED CT & UMLS Cross-References](https://autoicdapi.com/snomed-ct-umls) — Terminology mappings
|
|
249
279
|
- [ICD-10-CM 2025 Code Set](https://www.cms.gov/medicare/coding-billing/icd-10-codes) — Official CMS reference
|
|
250
280
|
|
|
251
281
|
---
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autoicd-js",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "ICD-10 medical coding SDK — convert clinical text to ICD-10-CM diagnosis codes with AI-powered NLP. Automated medical coding, PHI de-identification, and ICD-10
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "ICD-10 & ICD-11 medical coding SDK — convert clinical text to ICD-10-CM and ICD-11 diagnosis codes with AI-powered NLP. Automated medical coding, PHI de-identification, code search, and ICD-10/ICD-11 crosswalk for EHR, billing, and health-tech apps.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -28,6 +28,10 @@
|
|
|
28
28
|
"icd-10",
|
|
29
29
|
"icd10",
|
|
30
30
|
"icd-10-cm",
|
|
31
|
+
"icd-10-api",
|
|
32
|
+
"icd-10-lookup",
|
|
33
|
+
"icd-10-search",
|
|
34
|
+
"icd-10-code",
|
|
31
35
|
"medical-coding",
|
|
32
36
|
"medical-billing",
|
|
33
37
|
"clinical-nlp",
|
|
@@ -42,6 +46,14 @@
|
|
|
42
46
|
"hipaa",
|
|
43
47
|
"medical-ai",
|
|
44
48
|
"revenue-cycle-management",
|
|
49
|
+
"snomed-ct",
|
|
50
|
+
"umls",
|
|
51
|
+
"medical-coding-api",
|
|
52
|
+
"code-search",
|
|
53
|
+
"icd-11",
|
|
54
|
+
"icd11",
|
|
55
|
+
"icd-11-api",
|
|
56
|
+
"icd-10-icd-11-crosswalk",
|
|
45
57
|
"autoicd",
|
|
46
58
|
"autoicd-api"
|
|
47
59
|
],
|