~/docs cat quickstart.md
Quickstart
Run your first detection in one call:
curl
curl -X POST "https://api.scam.ai/v1/detections" \ -H "x-api-key: <YOUR_API_KEY>" \ -F "file=@/path/to/image.jpg"
response · 200 (truncated)
{
"id": "det_…",
"object": "detection",
"status": "completed",
"media": { "type": "image", "filename": "image.jpg" },
"verdict": "LIKELY_AI_MANIPULATED",
"confidence": 0.95,
"credits_used": 1
}confidenceis the model's probability that the media was manipulated — 0.0 reads as certainly real and 1.0 as certainly manipulated. It is NOT how sure we are of the verdict: an authentic result carries a LOW number.