EN DE SK
FaciaID

Identity Verification, Built for Modern Business.

Fast, secure ID verification that integrates with your platform via a simple API. Your customers verify in minutes — you stay compliant.

01
Create a Request

Your system sends a POST request with the customer's name and surname. You receive a unique, secure verification link.

02
Customer Uploads ID

The customer opens the link and uploads a photo of their government-issued ID. Their name is displayed to ensure the right document is uploaded.

03
Check the Result

After our team reviews the submission, check the outcome with a single GET request. Approved or declined — always in real time.

🔒
Encrypted Storage
Documents are encrypted at rest and automatically purged after the review is complete.
Simple API
One POST to start a session, one GET to read the result. No SDKs or complex setup required.
👤
AI Review
Every submission is reviewed by AI to ensure accuracy and reduce false positives.
🌍
Multilingual
Verification pages are served in English, German, and Slovak — automatically matching the customer's language.

Two requests. That's all it takes.

Your system sends a POST request with the customer's name and surname. You receive a unique, secure verification link.

# 1. Create a verification request POST /api/create.php Content-Type: application/json { "name": "John", "surname": "Doe" } → { "token": "a3f8c2d1...", "verify_url": "https://…/verify.php?token=a3f8c2…" } # 2. Check the result anytime GET /api/status.php?token=a3f8c2d1... → { "status": "approved" }