KYC/KYB Verifications
List verifications
Retrieve a list of verifications with optional filtering by customer ID and status.
get/verifications
Query parameters
customerIdstring
Filter by customer ID
verificationStatus'RESOLVE_ERRORS' | 'PENDING_MANUAL_REVIEW' | 'IN_PROGRESS' | 'APPROVED' | 'REJECTED' | 'READY_FOR_VERIFICATION'
Current status of the KYC/KYB verification
Example:RESOLVE_ERRORS
Filter by verification status
limitinteger
Maximum number of results to return (default 20, max 100)
cursorstring
Cursor for pagination (returned from previous request)
Response
Successful operation
Example response
{
"data": [
{
"id": "Verification:019542f5-b3e7-1d02-0000-000000000001",
"customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"verificationStatus": "RESOLVE_ERRORS",
"errors": [
{
"resourceId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"type": "MISSING_FIELD",
"field": "customer.address.line1",
"acceptedDocumentTypes": [
"PASSPORT"
],
"reason": "Business address line 1 is required"
}
],
"createdAt": "2025-10-03T12:00:00Z",
"updatedAt": "2025-10-03T12:00:00Z"
}
]
}