Diagnostic EngineStateless
Diagnose
sexSex
Biological sex enumeration (male/female).
Value in
"male" | "female"ageAge
Range
0 < value <= 130coding?CodingSystem
Medical coding system enumeration.
Represents the standardized medical terminology/coding system used to identify medical concepts.
Systems: ICD_10_CM: International Classification of Diseases, 10th Revision, Clinical Modification ICD_10_AM: International Classification of Diseases, 10th Revision, Australian Modification SNOMED_CT: Systematized Nomenclature of Medicine - Clinical Terms AUT: Avey Universal Terminology (custom system)
Default
"aut"Value in
"aut"chief_findingsChief Findings
The main complaints of the patient which are found as present
findingsFindings
The findings found in the patient case and their presence. Present (patient confirms the finding), Absent (patient does not have the finding) Unsure (patient is uncertain of having it)
Response Body
curl -X POST "https://api.avey.ai/ddx/v1/diagnose" \ -H "Content-Type: application/json" \ -d '{ "sex": "male", "age": 130, "chief_findings": [ { "id": "Headache", "term": "Headache" } ], "findings": [ { "id": "Headache", "term": "Headache", "status": "present" } ] }'{
"ddx": [
{
"description": "Commonly known as the common cold, this is a viral infection of your nose and throat.",
"id": "123",
"term": "Common Cold"
},
{
"description": "Commonly known as the flu, this is a contagious respiratory illness caused by influenza viruses.",
"id": "456",
"term": "Influenza"
}
]
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}How is this guide?