> For the complete documentation index, see [llms.txt](https://docs.accurascan.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.accurascan.com/solutions/voice-biometrics/android/setup-voice-verification.md).

# Setup Voice Verification

### Accura Voice Biometrics

Voice Biometrics Is Used for Matching Both The Source And The Target Audio. It Matches the User's audio with Enrolled User's audio.\
It Protects You from Identity Theft & Spoofing Attacks.

***

### Api Setup

Uploading Api details to matches enrolled user's audio files with target user's audio file

```
AndroidNetworking.upload(url)
        .addMultipartFile("sourceone", file1)  
        .addMultipartFile("sourcetwo", file2)  
        .addMultipartFile("sourcethree", file3)  
        .addMultipartFile("target", target)
        .setPriority(Priority.HIGH)
        .build()
        .getAsJSONObject(new JSONObjectRequestListener() {

            @Override
            public void onResponse(JSONObject response) {
                try {
                    double score = response.getDouble("score");
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }

            @Override
            public void onError(ANError error) {
                error.printStackTrace();
            }
        });

```
