Onboard your users with a single API call. We handle the hosted KYC flow and signed webhook delivery — so you don't have to build or maintain any verification infrastructure.
Trusted by fintechs and regulated businesses.
Identity Verification
Approved
alice@example.com · verified just now
Webhook delivered
POST https://yourapp.com/kyc
200 OK · 142 ms
How it works
Call our API with your user's ID and email. We return a one-time verification URL.
Send your user to the verification URL. We host the entire KYC flow with your branding.
When verification completes, we POST a signed event to your webhook URL with the result.
Integration in minutes
curl -X POST https://kiedo-kompliance.com/api/v1/applicants \
-H "Authorization: Bearer ob_live_..." \
-H "Content-Type: application/json" \
-d '{
"externalUserId": "user_123",
"email": "alice@example.com",
"returnUrl": "https://yourapp.com/onboarding/done"
}'
# Returns:
# {
# "applicantId": "clx...",
# "verifyUrl": "https://kiedo-kompliance.com/verify/eyJ...",
# "expiresAt": "2026-05-09T12:00:00Z"
# }