Kiedo Kompliance
KYC Onboarding as a Service

Identity verification, simple, fast, and developer-first

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.

How it works

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 KYC 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"
# }