SupportDashboard
ICD coding API

Extract Medical Conditions

Extract medical conditions from a clinical note

POST
/extract
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/extract" \  -H "Content-Type: application/json" \  -d '{    "note": "The patient reports shortness of breath and intermittent chest pain over the last 3 days."  }'
{
  "conditions": "shortness of breath"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

How is this guide?