API Reference
Frontend API
- Configs
- Users
- GETGet Current User
- DELDelete Current User
- PATCHUpdate Current User
- GETGet User Passkeys
- POSTStart Passkey Append
- POSTFinish Passkey Append
- DELDelete User Passkey
- POSTRefresh Session
- POSTLogout User
- POSTCreate Identifier
- DELDelete Identifier
- PATCHUpdate Identifier
- POSTStart Identifier Verification
- POSTFinish Identifier Verification
- GET
- Auth
- CorbadoConnect
Backend API
- Users
- Challenges
- Identifiers
- AuthEvents
- PasskeyEvents
- PasskeyChallenges
- PasswordManagers
- ClientEnvs
- ProjectConfig
- ConnectTokens
- WebhookEndpoints
- Sessions
- Passkeys
Users
Get User Passkeys
Gets current user’s passkeys
GET
/
v2
/
me
/
passkeys
Copy
curl --request GET \
--url https://{projectId}.frontendapi.corbado.io/v2/me/passkeys \
--header 'Authorization: Bearer <token>'
Copy
{
"passkeys": [
{
"id": "cre-12345",
"credentialID": "<string>",
"attestationType": "<string>",
"transport": [
"usb"
],
"backupEligible": true,
"backupState": true,
"authenticatorAAGUID": "<string>",
"sourceOS": "<string>",
"sourceBrowser": "<string>",
"lastUsed": "<string>",
"created": "<string>",
"status": "pending",
"aaguidDetails": {
"name": "<string>",
"iconLight": "<string>",
"iconDark": "<string>"
}
}
],
"paging": {
"page": 1,
"totalPages": 123,
"totalItems": 123
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
tbd
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://{projectId}.frontendapi.corbado.io/v2/me/passkeys \
--header 'Authorization: Bearer <token>'
Copy
{
"passkeys": [
{
"id": "cre-12345",
"credentialID": "<string>",
"attestationType": "<string>",
"transport": [
"usb"
],
"backupEligible": true,
"backupState": true,
"authenticatorAAGUID": "<string>",
"sourceOS": "<string>",
"sourceBrowser": "<string>",
"lastUsed": "<string>",
"created": "<string>",
"status": "pending",
"aaguidDetails": {
"name": "<string>",
"iconLight": "<string>",
"iconDark": "<string>"
}
}
],
"paging": {
"page": 1,
"totalPages": 123,
"totalItems": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.