Skip to main content

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.

Detect malicious QR codes and analyze embedded URLs.

Parameters

file
file
required
Image containing QR code (JPEG, PNG) - Max 10MB
x-api-key
string
required
Your API key

Response

{
  "qr_detected": true,
  "embedded_url": "https://malicious-site.com",
  "is_malicious": true,
  "confidence_score": 0.89,
  "processing_time_ms": 234
}

Example

curl -X POST "https://api.scam.ai/qr-code-detection" \
  -H "x-api-key: YOUR_API_KEY" \
  -F "file=@/path/to/qr-code-image.png"