List your passkeys
/auth/passkey
Response Body
Whether the credential is currently synced into a backup (the WebAuthn BS flag). Refreshed on every sign-in.
trueISO-8601 UTC timestamp of registration.
2026-07-01T11:03:20.000ZmultiDevice for a synced passkey (iCloud Keychain, Google Password Manager); singleDevice for a device-bound one (a security key, or a platform authenticator that does not sync).
multiDevicesingleDevicemultiDevicenull
The unique ID of the passkey. Use this to rename or delete it.
1ba1f401-7183-47c5-9e39-e8e257e3c795ISO-8601 UTC timestamp of the last successful sign-in with this passkey; null if it has never been used.
2026-07-23T09:12:44.000ZUser-supplied label, or null when the passkey was registered without one.
MacBook Touch IDcurl -X GET 'https://api.truto.one/auth/passkey' \
-H 'Authorization: Bearer <your_api_token>' \
-H 'Content-Type: application/json'const response = await fetch('https://api.truto.one/auth/passkey', {
method: 'GET',
headers: {
'Authorization': 'Bearer <your_api_token>',
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import requests
url = "https://api.truto.one/auth/passkey"
headers = {
"Authorization": "Bearer <your_api_token>",
"Content-Type": "application/json",
}
params = {
}
response = requests.get(url, headers=headers, params=params)
print(response.json())