Skip to main content
GET
/
auth
/
passkeyAlgorithms
List supported passkey algorithms
curl --request GET \
  --url https://api.guile.app/auth/passkeyAlgorithms
{
  "algorithms": [
    "ES256"
  ]
}

Response

Ok. The operation succeeded.

List of supported cryptographic algorithms for passkey credentials.

algorithms
enum<string>[]
required

The supported cryptographic algorithms.

COSE (CBOR Object Signing and Encryption) algorithm identifiers for WebAuthn.

These are the commonly supported cryptographic algorithms for passkey credentials. To get the current list of supported algorithms, see List supported passkey algorithms.

Client SDKs should map these human-readable values to their corresponding COSE numeric identifiers:

  • ES256 → -7
  • RS256 → -257
  • EdDSA → -8
  • ES384 → -35
  • ES512 → -36
Available options:
ES256,
RS256,
EdDSA,
ES384,
ES512