Skip to main content
GET
/
specialties
List specialties
curl --request GET \
  --url https://apim.doctorassistant.ai/api/sandbox/specialties \
  --header 'x-daai-api-key: <api-key>'
{
  "specialties": {
    "generic": {
      "title": "Generalist",
      "content": {
        "patientInformation": {
          "index": 0,
          "title": "Patient information",
          "content": {
            "name": {
              "title": "Name",
              "content": []
            },
            "age": {
              "title": "Age",
              "content": []
            }
          }
        }
      }
    },
    "psychiatry": {
      "title": "Psychiatry",
      "content": {
        "patientInformation": {
          "index": 0,
          "title": "Patient information",
          "content": {
            "name": {
              "title": "Name",
              "content": []
            },
            "age": {
              "title": "Age",
              "content": []
            }
          }
        }
      }
    }
  }
}

Authorizations

x-daai-api-key
string
header
required

API key for authentication

Response

200 - application/json

List of available specialties and their content templates

specialties
object

Dictionary of specialties, where each key is the specialty identifier

⌘I