Skip to main content
POST
/
auth
/
sign-up
Sign up with email + password
curl --request POST \
  --url https://api.mnemom.ai/v1/auth/sign-up \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "password": "<string>",
  "redirect_to": "<string>"
}
'
{
  "user": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "jsmith@example.com",
    "app_metadata": {},
    "user_metadata": {}
  }
}

Body

application/json
email
string<email>
required
password
string<password>
required
Minimum string length: 8
redirect_to
string<uri>

Allowlisted SPA path to return to after email confirmation.

Response

Account created. Either returns a full session (auto-confirm) or awaits email confirmation.

user
object
required

Supabase user shape. Fields beyond id and email are passthrough.