Skip to main content
Completing this quickstart will get you a working code prediction response from the Corti Medical Coding API. You can then explore the full API and use cases from there.

Prerequisites

  • A Corti Console account — sign up at the Corti Console to get started.
  • An API client — your tenant name, clientId, and clientSecret are all found in your API client configuration. See Creating API clients to set one up.
1

Send a prediction request

POST a clinical note to the code prediction endpoint. The system field determines which classification is applied.
Your environment (eu or us) is set in your API client — see Creating API clients.
The SDK handles OAuth 2.0 token acquisition and refresh automatically using your clientId and clientSecret — no need to manage bearer tokens manually.
2

Read the response

A successful response returns three top-level fields:
  • codes — the model’s high-confidence predictions. Each entry includes the code, a human-readable display, evidences (the exact passages from the note that support the prediction, with contextIndex, text, and start/end character offsets), and alternatives (other codes the model considered for the same finding).
  • candidates — lower-confidence codes worth reviewing. Intended for coder review rather than automatic assignment.
  • usageInfo — credits consumed for this request.
3

Combine coding systems

Most US encounters require more than one coding system. Pass multiple values in system — for example, pairing ICD-10-CM with CPT for an outpatient visit. The response includes codes from all requested systems in the same codes array, each tagged with its system value.
See Coding Systems for recommended pairings by encounter type.

Next steps

Code Prediction

Learn about the endpoint, supported features, and coding system options.

How it works

Understand the request schema, response fields, evidence spans, and filtering options.

Use cases

Encounter coding, CDI review, HCC capture, and revenue cycle workflows.
Please contact us if you need help getting started or run into issues with your first request.