Get the current user
/meThis operation remains available when privacy or enterprise retention policy blocks stored history; in that case history_available is false.
Parameters
Aqua-User
string
Header. Required with an organization key on product and dictation routes: the member's user id, the same id
GET /mereturns. A missing header returns400 user_required; a user who is not an active member returns403 user_not_member. Transcription routes and personal keys ignore the header.Pattern: ^usr_[0-9a-f]{32}$
curl https://api.aquavoice.com/v1/me \
-H "Authorization: Bearer <api-key>"{
"id": "usr_1daef426873f44baaf2096903dc7283e",
"object": "user",
"email": "maya@northstar.studio",
"name": "Maya Chen",
"created_at": "2026-08-11T17:03:00Z",
"credential": {
"id": "key_7d4d4d5ad69942fe9ceef628f5ba7bdd",
"method": "api_key",
"scopes": [
"read"
]
},
"privacy_mode": false,
"history_available": true
}