Auth

POST /v1/auth/request-key

Send a recovery OTP to a verified email (no auth required); the following /verify mints a new key.

unison-brain
POST /v1/auth/request-key

Send a recovery OTP to a verified email (no auth required); the following /verify mints a new key.

Auth: none (public endpoint)

Body fields

NameRequiredNotes
emailyes

Example

curl -X POST 'https://brain.unisonlabs.ai/v1/auth/request-key' \
  -H "Authorization: Bearer $UNISON_TOKEN" \
  -H 'content-type: application/json' \
  -d '{"email": "..."}'

Returns the JSON described above on success, or an error envelope { "error": { "code", "message" } } on failure.