Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.medera.info/llms.txt

Use this file to discover all available pages before exploring further.

The Medera Coding API generates ICD-10-CM, ICD-10-PCS, CPT, HCPCS, SNOMED CT, and LOINC codes from clinical encounter context — each anchored to a quoted note span.

Quick example

curl -X POST https://api.medera.ai/api/coding/predict \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "code_systems": ["icd-10-cm", "cpt"],
    "context": {
      "documentId": "doc_abc123"
    }
  }'
{
  "codes": [
    {
      "system": "icd-10-cm",
      "code": "F32.1",
      "display": "Major depressive disorder, single episode, moderate",
      "confidence": 0.92,
      "anchor": {
        "documentId": "doc_abc123",
        "span": { "start": 412, "end": 489 },
        "quote": "Patient reports persistent low mood for 6 weeks..."
      }
    }
  ]
}

What you can do

  • Encounter-based coding (signed or in-progress note)
  • CDI review with documentation gap surfacing
  • Revenue cycle sweeps for missed codes
  • Population-level coding audits

Coding overview

Capabilities and supported systems.

How it works

Request structure and best practices.

CDI

Clinical Documentation Improvement.

Revenue Cycle

Sweeps and retrospective audits.