Skip to main content
The German procedure classification, maintained by the BfArM. Required for all inpatient and day-case procedures alongside ICD-10-GM and the basis for DRG-based reimbursement. Around 17,000 codes structured as chapter-group-detail with optional decimal (e.g., 5-470.0). No encounter-type suffix required.

Quick start

System identifier: ops
curl -X POST "https://api.$environment.corti.app/v2/tools/coding/" \
  -H "Authorization: Bearer <token>" \
  -H "Tenant-Name: <tenant-name>" \
  -H "Content-Type: application/json" \
  -d '{
    "system": ["ops"],
    "context": [{"type": "text", "text": "Patient erhielt eine laparoskopische Cholezystektomie bei akuter Cholezystitis."}]
  }'
const response = await client.codes.predict({
  system: ["ops"],
  context: [{ type: "text", text: "Patient erhielt eine laparoskopische Cholezystektomie bei akuter Cholezystitis." }],
});
import requests

response = requests.post(
    "https://api.$environment.corti.app/v2/tools/coding/",
    headers={
        "Authorization": "Bearer <token>",
        "Tenant-Name": "<tenant-name>",
    },
    json={
        "system": ["ops"],
        "context": [{"type": "text", "text": "Patient erhielt eine laparoskopische Cholezystektomie bei akuter Cholezystitis."}],
    },
)
print(response.json())
API reference →
We have only evaluated this implementation on data from a limited set of specialties. This may not generalize to all hospitals. Contact us to share feedback or report issues.