Retrieve all registered WebAuthn credentials (security keys, biometric devices) for the current user. Requires authentication.
curl --request GET \
--url https://api.fluxer.app/v1/users/@me/mfa/webauthn/credentials \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"created_at": "<string>",
"last_used_at": "<string>"
}
]Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
curl --request GET \
--url https://api.fluxer.app/v1/users/@me/mfa/webauthn/credentials \
--header 'Authorization: <api-key>'[
{
"id": "<string>",
"name": "<string>",
"created_at": "<string>",
"last_used_at": "<string>"
}
]