> ## 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.

# URL Detection

Detect malicious URLs, phishing attempts, and scam websites.

## Parameters

<ParamField body="url" type="string" required>
  URL to analyze for threats
</ParamField>

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

## Response

```json theme={null}
{
  "is_malicious": true,
  "threat_type": "phishing",
  "confidence_score": 0.94,
  "processing_time_ms": 156
}
```

## Example

```bash theme={null}
curl -X POST "https://api.scam.ai/url-detection" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://suspicious-website.com"}'
```
