Skip to main content
GET
/
consultations
/
{DAAI_CONSULTATION_ID}
Get consultation
curl --request GET \
  --url https://apim.doctorassistant.ai/api/sandbox/consultations/{DAAI_CONSULTATION_ID} \
  --header 'x-daai-api-key: <api-key>'
{
  "id": "s0q0ud3fi1d9kcwjrt8vs50n",
  "transcription": "The patient came to me for the first consultation on July 23, 2024, with a history, a pre-Greek pathological history and current fibromyalgia.",
  "recording": {
    "duration": 12,
    "url": "https://storage.googleapis.com/doctor-assistant-consultations-stage/patients/unidentified/consultations/s0q0ud3fi1d9kcwjrt8vs50n/recordings/uh6iy80wogqnnnyvrdpk59k3-optimized.mp3"
  },
  "report": {
    "specialty": "generic",
    "content": {
      "icd_json": {
        "assessment": {
          "content": {
            "description": {
              "title": "<string>",
              "content": [
                {
                  "icd": [
                    "<string>"
                  ],
                  "content": "<string>"
                }
              ]
            }
          }
        }
      },
      "summary_json_pt": {},
      "medicalPrescription": {
        "medications": {
          "title": "<string>",
          "content": [
            {
              "dose": "<string>",
              "name": "<string>",
              "usage": "<string>",
              "possible_medications_anvisa": [
                {}
              ]
            }
          ]
        }
      }
    },
    "metadata": {}
  }
}

Authorizations

x-daai-api-key
string
header
required

API key for authentication

Path Parameters

DAAI_CONSULTATION_ID
string
required

Response

Consultation details

id
string
required

Consultation ID

Example:

"s0q0ud3fi1d9kcwjrt8vs50n"

transcription
string
required

Consultation audio transcription

Example:

"The patient came to me for the first consultation on July 23, 2024, with a history, a pre-Greek pathological history and current fibromyalgia."

recording
object
required

Recording information

report
object
required

Consultation report

I