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

# CCAM

> Classification commune des actes médicaux. The standard for medical procedure coding in France

The French procedure classification, maintained by the ATIH and CNAM. Required for both inpatient PMSI coding and ambulatory physician billing alongside [CIM-10-FR](/coding/cim-10-fr). 8,554 codes using seven-character alphanumeric identifiers (four letters followed by three digits, e.g., `AAFA001`). No encounter-type suffix required.

## Quick start

System identifier: `ccam`

<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": ["ccam"],
      "context": [{"type": "text", "text": "Patient a bénéficié d\u2019une appendicectomie par cœlioscopie pour appendicite aiguë."}]
    }'
  ```

  ```ts JavaScript theme={null}
  const response = await client.codes.predict({
    system: ["ccam"],
    context: [{ type: "text", text: "Patient a bénéficié d'une appendicectomie par cœlioscopie pour appendicite aiguë." }],
  });
  ```

  ```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": ["ccam"],
          "context": [{"type": "text", "text": "Patient a bénéficié d'une appendicectomie par cœlioscopie pour appendicite aiguë."}],
      },
  )
  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%20CCAM%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>
