Identity Verification
Identity verifications analyze the similarity between the biometric characteristics of an audio and those encapsulated by a voiceprint to validate that they belong to the same identity.
They can be used for biometric-based access control or to validate that the voice of a media fragment belongs to a certain speaker.
Combining identity verifications with authenticity and message verifications can greatly improve robustness against spoofing attempts.
Access: To manage a verification, you must have access to its space.
Isolation: A verification can only interact with resources inside its space.
Model: The analysis and comparison of the biometric characteristics of the voice is powered by a specific version of an identity verification model.
Score: Confidence in a positive result is represented by the score.
Fields
The UUID of the identity verification. Is unique.
uuid00000000-0000-0000-0000-000000000000The handle of the identity verification. Is unique.
verification-aThe alias of the identity verification.
Verification AThe state of the identity verification.
VerificationState (string)Possible values: [performing, performed, performedWithoutScore, error]
performedThe model of the identity verification.
default/v1.0audio
object | null
required
The audio of the identity verification.
The handle of the audio. Is unique.
audio-aThe alias of the audio.
Audio AThe state of the audio.
AudioState (string)Possible values: [avaitingFile, available, notAvailable]
availablevoiceprint
object | null
required
The voiceprint of the identity verification.
The handle of the voiceprint. Is unique.
voiceprint-aThe alias of the voiceprint.
Voiceprint AThe state of the voiceprint
VoiceprintState (string)Possible values: [notComputable, computable, computed]
notComputableidentity
object
required
The identity of voiceprint.
The handle of the identity. Is unique.
identity-aThe alias of the identity.
Identity AThe duration of the audio.
PT3.500SThe voice duration of the audio.
durationPT3.500SThe score of the identity verification. This field is deprecated, use scores.identity instead. Only returned for the default and telephone models.
floatPossible values: <= 1
0.85scores
object
required
The scores of the identity verification.
The identity score of the identity verification.
floatPossible values: <= 1
0.85The synthesis score of the identity verification.
floatPossible values: <= 1
0.85The replay score of the identity verification.
floatPossible values: <= 1
0.85The date and time when the identity verification was created.
date-time2023-01-01T00:00:00.000000ZThe date and time when the identity verification was performed.
date-time2023-01-01T00:00:00.000000Z{
"id": "00000000-0000-0000-0000-000000000000",
"handle": "verification-a",
"alias": "Verification A",
"state": "performed",
"model": "default/v1.0",
"audio": {
"handle": "audio-a",
"alias": "Audio A",
"state": "available"
},
"voiceprint": {
"handle": "voiceprint-a",
"alias": "Voiceprint A",
"state": "notComputable",
"identity": {
"handle": "identity-a",
"alias": "Identity A"
}
},
"duration": "PT3.500S",
"voiceDuration": "PT3.500S",
"scores": {
"identity": 0.85,
"synthesis": 0.85,
"replay": 0.85
},
"createdAt": "2023-01-01T00:00:00.000000Z",
"performedAt": "2023-01-01T00:00:00.000000Z"
}