Skip to main content
The French procedure classification, maintained by the ATIH and CNAM. Required for both inpatient PMSI coding and ambulatory physician billing alongside 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
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ë."}]
  }'
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ë." }],
});
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())
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.