Developer Docs
Build with Skala
Everything you need to integrate real-time fraud scoring into your app. One API call, under 30ms.
Quick Start
Get up and running in under 5 minutes. Sign up, grab your API key, and make your first scoring request.
1
Sign Up
Create a free account. No credit card required.
2
Get API Key
Copy your key from the dashboard.
3
Score Events
POST to /v1/score and get a decision in <30ms.
Your First Request
curl -X POST https://apiskala.varityweb.com/v1/score \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk_live_your_key" \
-d '{
"event_type": "signup",
"ip": "185.220.101.5",
"email": "user@example.com",
"device_id": "dev_9x2y8z",
"form_fill_ms": 1250,
"user_agent": "Mozilla/5.0"
}'Response
{
"request_id": "req_a7c8e9b0d1e2",
"risk_score": 87,
"decision": "block",
"reason_codes": [
"DISPOSABLE_EMAIL",
"HIGH_IP_VELOCITY",
"DEVICE_REUSE"
],
"signal_breakdown": {
"disposable_email": 20,
"ip_velocity": 25,
"device_reuse": 30
},
"latency_ms": 23
}AI Agent Integration
Integrating Skala with an AI Coder (like Claude Code, Gemini, or Cursor)? You can point your agent directly to our hosted Agent Skill specification. This provides the AI with structured instructions and integration snippets to automatically implement Skala SDKs into your codebase: