curl --request GET \
--url https://api.mnemom.ai/v1/auth/passkeys \
--cookie mnemom_session={
"passkeys": [
{
"credential_id": "<string>",
"friendly_name": "<string>",
"device_type": "single_device",
"backed_up": true,
"transports": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z"
}
]
}Returns the safe subset of user_passkeys for the authenticated user (omits public_key, counter, last_used_ip).
curl --request GET \
--url https://api.mnemom.ai/v1/auth/passkeys \
--cookie mnemom_session={
"passkeys": [
{
"credential_id": "<string>",
"friendly_name": "<string>",
"device_type": "single_device",
"backed_up": true,
"transports": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"last_used_at": "2023-11-07T05:31:56Z"
}
]
}HttpOnly, Secure, SameSite=Lax cookie issued by /v1/auth/sign-in (or the SSO / email-callback flows). The value is an AES-256-GCM-encrypted blob of {access_token, refresh_token, issued_at, auth_method}. Browser clients include this automatically with credentials: "include".
Passkey list.
Show child attributes