How Kiedo Kompliance works
Integrate hosted identity verification in minutes — one API call to start, one webhook to receive the result.
01
Create an applicant
Call our API with your user's ID and email. We return a one-time verification URL.
02
Redirect your user
Send your user to the verification URL. We host the entire verification flow with your branding.
03
Receive a webhook
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"
# }