Skip to main content
POST
/
patients
Create a new patient
curl --request POST \
  --url https://api.healos.ai/ext-api/v1/patients \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Maria Santos"
}
'
{
  "data": {
    "id": "1743552000000",
    "name": "Maria Santos",
    "created_at": "2026-03-15T09:30:00.000Z",
    "pronouns": "she/her",
    "notes": "History of generalized anxiety disorder. Currently on sertraline 50mg.",
    "consent": true
  }
}

Body

application/json
name
string
required

Patient name (required)

Minimum string length: 1
Example:

"Maria Santos"

Response

Patient created

data
object
required