---
title: "Verify Profile"
method: POST
path: "/text-independent/profiles/{profileId}/verify"
tags: ["text-independent"]
---

# Verify Profile

`POST /text-independent/profiles/{profileId}/verify`

Verifies existing profiles against input audio.

Limitations:
* Minimum audio input length is **1 second**
* Maximum audio input length is **120 seconds**
* Minimum effective speech length (excluding silence and other "non-speech" frames) is **4 seconds**
  This limitation can be disabled by setting "ignoreMinLength" to **true**.
* Minimum audio Signal-to-noise ratio (SNR) is **0dB**

## Query parameters

- `ignoreMinLength` boolean

## Response `200`

OK

- RecognitionInfo — Speaker recognition result
  - `recognitionResult` 'accept' | 'reject' — Does audio belong to targeted profile?
  - `score` number — A float number indicating the similarity between input audio and targeted voice print. This number must be between 0 and 1. A higher number means higher similarity.

## Other responses

- `400` — Bad Request * InvalidRequest - Invalid audio length. Maximum allowed length per recognition request is 120 seconds. * InvalidRequest - Invalid audio length. Minimum allowed length per recognition request is 1 second. * InvalidRequest - Invalid audio format. Supported format is 16Khz 16bit Mono PCM. * InvalidArgument - Invalid ignoreMinLength parameter value. Valid values are "true" and "false". * InvalidRequest - Profile is not enrolled.
- `401` — Request is not authorized. Make sure subscription key is included and valid.
- `404` — NotFound - Requested profile doesn't exist
- `415` — UnsupportedMediaType - Unsupported media type. Only "audio/wav; codecs=audio/pcm" is accepted.
- `429` — Rate limit is exceeded.
- `500` — Internal Server Error.

---

[API](https://skmtc.net/azure/apis/cognitiveservices-speakerrecognition-verification.md) · [All operations](https://skmtc.net/azure/apis/cognitiveservices-speakerrecognition-verification/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/azure/cognitiveservices-speakerrecognition-verification/revisions/b4c1a68ff13f/schema)
