List Passkeys.
GET
/api/admin/me/passkeys
Code sample: Shell / cURL
curl --request GET \ --url https://auth.example.com/api/admin/me/passkeys \ --header 'Authorization: Bearer <token>'List Passkeys in the Admin Passkeys area. Use this operation to retrieve passkey data without mutating tenant state.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Current admin passkeys.
Media type application/json
object
passkeys
required
Array<object>
object
id
required
string
device_name
required
string | null
aaguid
required
Display-only WebAuthn authenticator AAGUID. Do not use for trust decisions.
string | null
provider
required
created_at
required
integer format: int64
total
required
integer format: int64
Example
{ "passkeys": [ { "id": "apk_123", "device_name": "MacBook Pro", "created_at": 1770000000000, "last_used_at": 1770001000000 } ], "total": 1}default
Section titled “default ”Error response.
Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{ "error": "example", "message": "example", "error_description": "example"}