curl --request POST \
--url https://api.next.orenda.finance/v1/ai-validation/applications/{applicationId}/kyc-step \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"stepKey": "step-1",
"fields": [
{
"key": "phone_number",
"data": "+31612345678"
}
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({stepKey: 'step-1', fields: [{key: 'phone_number', data: '+31612345678'}]})
};
fetch('https://api.next.orenda.finance/v1/ai-validation/applications/{applicationId}/kyc-step', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/ai-validation/applications/{applicationId}/kyc-step"
payload = {
"stepKey": "step-1",
"fields": [
{
"key": "phone_number",
"data": "+31612345678"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"success": true,
"data": {
"findings": [
{
"fieldKey": "phone_number",
"ruleId": "kyc.applicant.phone",
"message": "Phone number does not look like a valid Dutch number."
}
],
"reason": "<string>"
}
}{
"success": false,
"code": "<string>",
"message": "<string>"
}{
"success": false,
"code": "<string>",
"message": "<string>"
}AI-validate a KYC questionnaire step (consumer, advisory)
Synchronous, ADVISORY AI validation of one internal KYC questionnaire step — called by the frontend after the applicant completes the step and BEFORE persisting it via POST /v1/applications//kyc. The step’s fields are checked against the per-field customer-validation rules of the AI-review schema bound to the application’s onboarding role, with previously submitted answers as context, on a fast model. CONSUMER endpoint (unlike the back-office routes above): programId/sandbox come from the consumer token — no query params — and the caller must own the application. Fail-open by design: once auth/ownership/body-shape pass, the endpoint always returns 200 (statuses OK / FINDINGS / SKIPPED / AI_UNAVAILABLE). Findings never block progression; the deterministic schema validation on POST /kyc remains the only blocker.
curl --request POST \
--url https://api.next.orenda.finance/v1/ai-validation/applications/{applicationId}/kyc-step \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"stepKey": "step-1",
"fields": [
{
"key": "phone_number",
"data": "+31612345678"
}
]
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({stepKey: 'step-1', fields: [{key: 'phone_number', data: '+31612345678'}]})
};
fetch('https://api.next.orenda.finance/v1/ai-validation/applications/{applicationId}/kyc-step', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/ai-validation/applications/{applicationId}/kyc-step"
payload = {
"stepKey": "step-1",
"fields": [
{
"key": "phone_number",
"data": "+31612345678"
}
]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"success": true,
"data": {
"findings": [
{
"fieldKey": "phone_number",
"ruleId": "kyc.applicant.phone",
"message": "Phone number does not look like a valid Dutch number."
}
],
"reason": "<string>"
}
}{
"success": false,
"code": "<string>",
"message": "<string>"
}{
"success": false,
"code": "<string>",
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The applicant's application id.