curl -X GET "https://api.sully.ai/alpha/consensus/consensus_abc123def456" \ -H "Authorization: Bearer YOUR_API_KEY"
Copy
{ "data": { "id": "consensus_abc123def456", "status": "completed", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:35:00Z", "result": { "consensus_response": "Based on the clinical presentation of chest pain, shortness of breath, and elevated troponin levels in a 45-year-old patient, the most likely diagnosis is acute myocardial infarction (AMI). However, several differential diagnoses should be considered including pulmonary embolism, aortic dissection, and myocarditis. Immediate ECG and chest X-ray are recommended, along with serial troponin measurements. Consider CT pulmonary angiogram if PE is suspected, and cardiology consultation is recommended." }, "metadata": {} }}
Medical Consensus
Get Medical Consensus
Retrieve a medical consensus request by its unique identifier.
GET
/
alpha
/
consensus
/
{id}
Copy
curl -X GET "https://api.sully.ai/alpha/consensus/consensus_abc123def456" \ -H "Authorization: Bearer YOUR_API_KEY"
Copy
{ "data": { "id": "consensus_abc123def456", "status": "completed", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:35:00Z", "result": { "consensus_response": "Based on the clinical presentation of chest pain, shortness of breath, and elevated troponin levels in a 45-year-old patient, the most likely diagnosis is acute myocardial infarction (AMI). However, several differential diagnoses should be considered including pulmonary embolism, aortic dissection, and myocarditis. Immediate ECG and chest X-ray are recommended, along with serial troponin measurements. Consider CT pulmonary angiogram if PE is suspected, and cardiology consultation is recommended." }, "metadata": {} }}
Retrieve the details and results of a specific medical consensus request using its unique identifier. This endpoint returns the current status of the request and any available consensus results.
curl -X GET "https://api.sully.ai/alpha/consensus/consensus_abc123def456" \ -H "Authorization: Bearer YOUR_API_KEY"
Copy
{ "data": { "id": "consensus_abc123def456", "status": "completed", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:35:00Z", "result": { "consensus_response": "Based on the clinical presentation of chest pain, shortness of breath, and elevated troponin levels in a 45-year-old patient, the most likely diagnosis is acute myocardial infarction (AMI). However, several differential diagnoses should be considered including pulmonary embolism, aortic dissection, and myocarditis. Immediate ECG and chest X-ray are recommended, along with serial troponin measurements. Consider CT pulmonary angiogram if PE is suspected, and cardiology consultation is recommended." }, "metadata": {} }}