Skip to main content
GET
/
webauthn
/
credentials
Get a list of WebAuthn credentials
curl --request GET \
  --url https://{tenant_id}.hanko.io/webauthn/credentials \
  --cookie hanko=
[
  {
    "id": "5333cc5b-c7c4-48cf-8248-9c184ac72b65",
    "name": "iCloud",
    "public_key": "pQECYyagASFYIBblARCP_at3cmprjzQN1lJ...",
    "attestation_type": "packed",
    "aaguid": "01020304-0506-0708-0102-030405060708",
    "last_used_at": "2026-02-24T21:40:36.26936Z",
    "created_at": "2026-02-24T21:40:36.26936Z",
    "transports": [
      "internal"
    ],
    "backup_eligible": true,
    "backup_state": true,
    "mfa_only": false
  },
  {
    "id": "f826013e-e7e3-4366-a6d8-9359effc8cdd",
    "name": "Yubikey Bio",
    "public_key": "aNMEEyadASFYIBblARCP_at3cmp4gg3zQN1lJ...",
    "attestation_type": "packed",
    "aaguid": "90636e1f-ef82-43bf-bdcf-5255f139d12f",
    "last_used_at": "2026-02-24T21:40:36.26936Z",
    "created_at": "2026-02-24T21:40:36.26936Z",
    "transports": [
      "usb"
    ],
    "backup_eligible": true,
    "backup_state": false,
    "mfa_only": true
  }
]
Deprecated. Please use the Flow API instead. What’s the Flow API?.

Authorizations

hanko
string
cookie
required

Response

A list of WebAuthn credentials assigned to the current user

aaguid
string<uuid>
attestation_type
enum<string>
Available options:
none,
packed,
tpm,
android-key,
android-safetynet,
fido-u2f,
apple
backup_eligible
boolean
backup_state
boolean
created_at
string<date-time>
id
string<uuid>
last_used_at
string<date-time>
mfa_only
boolean
name
string
public-key
string
transports
enum<string>[]
Available options:
ble,
internal,
nfc,
usb
Example:
[
{
"id": "5333cc5b-c7c4-48cf-8248-9c184ac72b65",
"name": "iCloud",
"public_key": "pQECYyagASFYIBblARCP_at3cmprjzQN1lJ...",
"attestation_type": "packed",
"aaguid": "01020304-0506-0708-0102-030405060708",
"last_used_at": "2026-02-24T21:40:36.26936Z",
"created_at": "2026-02-24T21:40:36.26936Z",
"transports": ["internal"],
"backup_eligible": true,
"backup_state": true,
"mfa_only": false
},
{
"id": "f826013e-e7e3-4366-a6d8-9359effc8cdd",
"name": "Yubikey Bio",
"public_key": "aNMEEyadASFYIBblARCP_at3cmp4gg3zQN1lJ...",
"attestation_type": "packed",
"aaguid": "90636e1f-ef82-43bf-bdcf-5255f139d12f",
"last_used_at": "2026-02-24T21:40:36.26936Z",
"created_at": "2026-02-24T21:40:36.26936Z",
"transports": ["usb"],
"backup_eligible": true,
"backup_state": false,
"mfa_only": true
}
]