Path Parameters
Your internal user identifier.
Bearer token. Format: Bearer <client_token>
Response
Your internal user identifier.
KYC status. See table below.
ISO 8601 timestamp of when KYC was verified. Present only when status is verified.
KYC Statuses
| Status | Description |
|---|
not_started | User has never opened the widget or submitted KYC |
pending | KYC submitted, under review |
verified | KYC passed — user can transact |
failed | Verification failed — user must retry inside the widget |
Examples
curl https://DOMAIN/widget/users/user-123/kyc-status \
-H "Authorization: Bearer <client_token>"
{
"partner_user_id": "user-123",
"status": "verified",
"verified_at": "2026-03-15T10:00:00Z"
}