SupportDashboard
ICD coding API

Code Free Text

Code a clinical note or medical condition using ICD10-CM code(s)

POST
/code
noteClinical Note

Unstructured free-text input provided by a healthcare professional. May include symptoms, observations, diagnoses, and other relevant medical context.

Response Body

curl -X POST "https://api.avey.ai/code" \  -H "Content-Type: application/json" \  -d '{    "note": "The patient reports shortness of breath and intermittent chest pain over the last 3 days."  }'
{
  "labels": "R06.02"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

How is this guide?