> ## Documentation Index
> Fetch the complete documentation index at: https://docu.scam.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Voice Clone Detection

Detect AI-generated voice clones and synthetic speech in audio files.

## Parameters

<ParamField body="file" type="file" required>
  Audio file (WAV, MP3, FLAC, OGG) - Max 20MB
</ParamField>

<ParamField header="x-api-key" type="string" required>
  Your API key
</ParamField>

## Response

```json theme={null}
{
  "is_voice_clone": false,
  "confidence_score": 0.23,
  "processing_time_ms": 890
}
```

## Example

```bash theme={null}
curl -X POST "https://api.scam.ai/voice-clone-detection" \
  -H "x-api-key: YOUR_API_KEY" \
  -F "file=@/path/to/your/audio.wav"
```
