Quick Start

Get your first forgery score in under 5 minutes. No SDK required — just HTTP.

1

Create your account

Sign up at veriscor.io/auth/signup. You get 100 free checks per month with no credit card required.

2

Get your API key

Go to Dashboard → API Keys and create a new key. Copy it immediately — it won't be shown again.

3

Make your first request

bash
curl -X POST https://veriscor.io/api/v1/verify \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "document=@passport.jpg"
4

Check the result

json
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "forgeryScore": 0.12,
    "confidence": "high",
    "documentType": "passport",
    "flags": [],
    "latencyMs": 1847
  }
}

Accuracy disclaimer: Veriscor uses visual forensics (AI vision models) to detect anomalies. It does not query government databases or perform AAMVA lookups. Scores should be used as one factor in your verification workflow.

Prefer a visual interface? Try the API Playground in your dashboard — upload a document and see the response instantly, no code required.

Next steps