v1

latestOpenAPI 3.1.02026-07-2676188241.3 KB
Codes

Predict Codes

Predict medical codes from provided context.<br/><Note>This is a stateless endpoint, designed to predict ICD-10-CM, ICD-10-PCS, ICD-10 (international), ICD-10-UK, CIM-10-FR, ICD-10-GM, OPCS-4, OPS, CCAM and CPT codes based on input text string or documentId.<br/><br/>More than one code system may be defined in a single request.<br/><br/>Code prediction requests have two possible values for context:<br/>- text: One set of code prediction results will be returned based on all input text defined.<br/>- documentId: Code prediction will be based on that defined document only.<br/><br/>The response includes two sets of results:<br/>- Codes: Codes predicted by the model.<br/>- Candidates: Lower-confidence codes the model considered potentially relevant but excluded from the predicted set.<br/><br/>All predicted code results are based on input context defined in the request only (not other external data or assets associated with an interaction).</Note>

post/tools/coding/

Headers

Tenant-Namestring required

Identifies a distinct entity within Corti's multi-tenant system. Ensures correct routing and authentication of the request.

Example:base

Identifies a distinct entity within Corti's multi-tenant system. Ensures correct routing and authentication of the request.

Request body

systemCommonCodingSystemEnum[] required

List of coding systems for prediction

Example request

{
  "system": [
    "icd10cm-outpatient",
    "cpt"
  ],
  "filter": {
    "include": [
      "E11"
    ]
  }
}

Response

List of predicted codes and candidate codes per system defined in the request, including evidence supporting the code prediction.

Example response

{
  "codes": [
    {
      "code": "T93.3"
    }
  ],
  "candidates": [
    {
      "code": "T93.3"
    }
  ]
}