Create a secure hosted link. Your user uploads their government ID and takes a selfie. gpt-5.6-luna vision analysis matches faces, extracts data via OCR, and returns results via API or webhook.
POST to /v1/id-verify with your API key. Get back a unique verification URL and session ID.
Share the hosted link via email, SMS, or embed it in your app. Mobile-optimized for easy use.
Person uploads their government ID and takes a selfie on the hosted page. No app install needed.
Poll the session endpoint or receive a webhook with face match score, OCR data, and ID type.
Every completed verification returns structured data extracted from the ID document, plus a face match confidence score.
No frontend to build. We host the verification page — just send a link.
Provide a callback_url and receive a POST when verification completes.
Credits are only deducted on successful processing, not session creation.
Sessions expire automatically. Default 24 hours, configurable via API.
Images processed in memory. Only SHA-256 hashes kept for audit trail.
Hosted page works on any device. Camera access for selfie capture.
# 1. Create a verification session $ curl -X POST -H "Authorization: Bearer rk_..." \ -H "Content-Type: application/json" \ -d '{"reference_id":"user-123","callback_url":"https://your.app/webhook"}' \ "https://api.verified.fast/v1/id-verify" # Returns: { "session_id": "...", "verify_url": "https://verified.fast/verify/..." } # 2. Send verify_url to your user. They upload ID + selfie. # 3. Get results $ curl -H "Authorization: Bearer rk_..." \ "https://api.verified.fast/v1/id-verify/SESSION_ID"
3 credits per verification. No monthly minimums. Credits never expire.