> ## Documentation Index
> Fetch the complete documentation index at: https://docs.corti.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# CIM-10-FR

> French modification of ICD-10 (CIM-10-FR). The standard for diagnosis coding in France

The French modification of ICD-10, maintained by the ATIH. Required for diagnosis coding across French hospitals and the basis for PMSI reporting and T2A reimbursement. Around 16,000 alphanumeric codes (3–5 characters, e.g., `E11.9`).

## Quick start

System identifiers: `cim10fr-inpatient` · `cim10fr-outpatient`

<CodeGroup>
  ```bash curl theme={null}
  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": ["cim10fr-inpatient"],
      "context": [{"type": "text", "text": "Patient hospitalisé pour pneumonie communautaire avec diabète de type 2 connu."}]
    }'
  ```

  ```ts JavaScript theme={null}
  const response = await client.codes.predict({
    system: ["cim10fr-inpatient"],
    context: [{ type: "text", text: "Patient hospitalisé pour pneumonie communautaire avec diabète de type 2 connu." }],
  });
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      "https://api.$environment.corti.app/v2/tools/coding/",
      headers={
          "Authorization": "Bearer <token>",
          "Tenant-Name": "<tenant-name>",
      },
      json={
          "system": ["cim10fr-inpatient"],
          "context": [{"type": "text", "text": "Patient hospitalisé pour pneumonie communautaire avec diabète de type 2 connu."}],
      },
  )
  print(response.json())
  ```
</CodeGroup>

[API reference →](/api-reference/codes/predict-codes)

<Note>
  We have only evaluated this implementation on data from a limited set of specialties. This may not generalize to all hospitals. [Contact us](https://www.corti.ai/contact-us?products=medical-coding,api\&use_case=I'm%20using%20CIM-10-FR%20%28France%29%20via%20the%20Corti%20Medical%20Coding%20API%20and%20would%20like%20to%20share%20feedback%20on%20my%20experience.) to share feedback or report issues.
</Note>

## Encounter type

<Warning>
  **Encounter type is required.** CIM-10-FR coding guidelines differ significantly between inpatient and outpatient settings. For instance, in the outpatient setting, one should only code established diagnoses. In the inpatient setting, one should also include all diagnoses that are uncertain, even those that are ruled out. Use `cim10fr-inpatient` for inpatient cases and `cim10fr-outpatient` for outpatient cases. The correct guideline set is applied automatically based on the suffix.
</Warning>

## Inpatient procedures

<Tip>
  For French inpatient PMSI episodes, CIM-10-FR is paired with [CCAM](/coding/ccam) for procedure coding. Use `cim10fr-inpatient` for diagnoses and `ccam` for procedures in the same request.
</Tip>
