SupportDashboard
Diagnostic EngineConversational

Get DDX

Generates a clinical diagnosis and patient recommendations based on a patient's profile from an existing session. Provides a differential diagnosis, self management adivce, urgency evaluation, and specialist recommendation.

GET
/v1/session/{session_id}/diagnose
AuthorizationBearer <token>

In: header

Path Parameters

session_idSession Id

The unique identifier for a completed session.

Response Body

curl -X GET "https://api.avey.ai/ddx/v1/session/f47ac10b-58cc-4372-a567-0e02b2c3d479/diagnose"
{
  "differential_diagnosis": [
    {
      "description": "Commonly known as the common cold, this is a viral infection of your nose and throat.",
      "id": "Common Cold",
      "term": "Common Cold"
    },
    {
      "description": "Commonly known as the flu, this is a contagious respiratory illness caused by influenza viruses.",
      "id": "Influenza",
      "term": "Influenza"
    }
  ],
  "self_management": "Stay hydrated and get plenty of rest. Over-the-counter pain relievers can help with aches.",
  "urgency": "Home Treatable",
  "specialist": "General Practitioner",
  "patient_info": {
    "age": 34,
    "sex": "male",
    "chief_findings": [
      {
        "id": "Headache",
        "status": "present",
        "term": "Headache"
      },
      {
        "id": "Fever",
        "status": "present",
        "term": "Fever"
      }
    ],
    "findings": [
      {
        "id": "Headache",
        "status": "present",
        "term": "Headache"
      },
      {
        "id": "Fever",
        "status": "present",
        "term": "Fever"
      },
      {
        "id": "Nasal block",
        "status": "absent",
        "term": "Nasal block"
      },
      {
        "id": "Headache (Occipital region)",
        "status": "unsure",
        "term": "Headache (Occipital region)"
      }
    ]
  }
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}

How is this guide?