npm.io
0.3.0 • Published 2d ago

@atlasmedcode/sdk

Licence
MIT
Version
0.3.0
Deps
0
Size
4 kB
Vulns
0
Weekly
0

@atlasmedcode/sdk

Atlas MedCode enterprise SDK for medical code translation and terminology mapping.

This package is the enterprise-branded distribution of the TranslateMD SDK. It re-exports the full @translatemd/sdk API — install whichever package name fits your organization's conventions.

Installation

npm install @atlasmedcode/sdk
# peer dep
npm install @translatemd/sdk

Usage

import { TranslateMD } from '@atlasmedcode/sdk';

const client = new TranslateMD({ apiKey: process.env.ATLAS_MEDCODE_API_KEY });

// Map a diagnosis code from German ICD-10-GM to US ICD-10-CM
const result = await client.mapCode({
  code: 'I10',
  sourceSystem: 'ICD-10-GM',
  targetSystem: 'ICD-10-CM',
});

console.log(result.mappedCode); // 'I10' — essential hypertension

All methods, types, and error classes are identical to @translatemd/sdk. See the full documentation at translatemd.io/docs/sdk.

API Coverage

  • Code mapping (mapCode, mapCodes)
  • Terminology search (searchCodes, validateCode)
  • Document translation (translate, translateText)
  • FHIR R4 ConceptMap $translate operation (FHIRClient)
  • Coverage inspection (getSystems, getCoverage)
  • Streaming translation events

Enterprise

Atlas MedCode is the enterprise brand of TranslateMD. For air-gapped deployments, HIPAA BAA, SLAs, or volume pricing, contact enterprise@translatemd.io.

License

MIT

Keywords