> ## 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.

# Quickstart — AI Coding Tools

> Pick a use case, prompt your coding agent, ship

Common AI coding tasks on Medera, each with a single API call.

## Encounter coding (signed note)

```bash theme={"system"}
curl -X POST https://api.medera.info/api/coding/predict \
  -H "Authorization: Bearer $TOKEN" \
  -d '{ "code_systems": ["icd-10-cm", "cpt"], "context": { "documentId": "doc_abc" } }'

```

## CDI review

```bash theme={"system"}
curl -X POST https://api.medera.info/api/coding/cdi/review \
  -H "Authorization: Bearer $TOKEN" \
  -d '{ "documentId": "doc_abc" }'

```

## Revenue cycle sweep

```bash theme={"system"}
curl -X POST https://api.medera.info/api/coding/sweep \
  -H "Authorization: Bearer $TOKEN" \
  -d '{ "patient_ids": ["pat_a", "pat_b"], "period": { "from": "2026-04-01", "to": "2026-04-30" } }'

```

See [Coding overview](/coding/overview).
