Skip to main content
POST
/
auth
/
passkey
/
verify-auth
Verify a passkey assertion and issue a session
curl --request POST \
  --url https://api.mnemom.ai/v1/auth/passkey/verify-auth \
  --header 'Content-Type: application/json' \
  --data '
{
  "response": {
    "id": "<string>",
    "rawId": "<string>",
    "type": "public-key",
    "response": {},
    "clientExtensionResults": {},
    "authenticatorAttachment": "<string>"
  }
}
'
{
  "user": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "jsmith@example.com",
    "app_metadata": {},
    "user_metadata": {}
  }
}

Body

application/json
response
object
required

Browser's navigator.credentials.get() response, JSON-serialized.

Response

Session issued.

user
object

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