Skip to main content
POST
/
passkey
/
verifySignedData
Verify signedPasskeyData from a passkey login
curl --request POST \
  --url https://backendapi.corbado.io/v2/passkey/verifySignedData \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "signedPasskeyData": "<string>",
  "username": "<string>"
}
'
{
  "verificationResult": "success"
}

Documentation Index

Fetch the complete documentation index at: https://docs.corbado.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic authentication is used to authenticate requests to the Backend API. The username is the project ID and the password is the API secret.

The project ID and API secret can be found in the Developer Panel.

Body

application/json
signedPasskeyData
string
required
username
string
required

Response

signedPasskeyData has been verified.

verificationResult
enum<string>
required
Available options:
success,
invalid_signature,
invalid_challenge,
user_mismatch,
generic_error