VS

VoiceShield

AI Voice Authenticity

API Documentation

Integrate VoiceShield into your application using our REST API.

Endpoint

POST /analyze

Request

Content-Type

multipart/form-data

Form Field

file

Sample Response

{
  "label": "synthetic",
  "synthetic_probability": 0.91,
  "confidence": "high",
  "duration_seconds": 18.4,
  "model_version": "v1.0"
}

Python Example

import requests

url = "http://localhost:8000/analyze"

files = {
    "file": open("sample.wav","rb")
}

response = requests.post(url, files=files)

print(response.json())