Create an application
curl --request POST \
--url https://api.next.orenda.finance/v1/applications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"isCompany": false,
"email": "ada.lovelace@example.com"
}
'import requests
url = "https://api.next.orenda.finance/v1/applications"
payload = {
"isCompany": False,
"email": "ada.lovelace@example.com"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({isCompany: false, email: 'ada.lovelace@example.com'})
};
fetch('https://api.next.orenda.finance/v1/applications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.next.orenda.finance/v1/applications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'isCompany' => false,
'email' => 'ada.lovelace@example.com'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.next.orenda.finance/v1/applications"
payload := strings.NewReader("{\n \"isCompany\": false,\n \"email\": \"ada.lovelace@example.com\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.next.orenda.finance/v1/applications")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"isCompany\": false,\n \"email\": \"ada.lovelace@example.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.next.orenda.finance/v1/applications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"isCompany\": false,\n \"email\": \"ada.lovelace@example.com\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"application": {
"applicationId": "app_5e8d2f1a",
"customerId": "cust_3f9a2b7e",
"isCompany": false,
"workflowStage": "NEW",
"onboardingV3": true,
"status": {
"currentStep": "KYC_INTERNAL",
"nextStep": "RISK",
"requiredActions": [
"complete-kyc"
]
},
"primaryApplicant": {
"firstName": "",
"lastName": "",
"email": "ada.lovelace@example.com"
},
"createdDateTime": "2026-06-18T10:32:00Z",
"updatedAt": "2026-06-18T10:32:00Z"
}
}
}{
"success": false,
"code": "VALIDATION_ERROR",
"message": "isCompany is required"
}{
"success": false,
"code": "UNAUTHORIZED",
"message": "Unauthorized"
}{
"success": false,
"code": "WEB_TOKEN_PROVIDER_MISMATCH",
"message": "Sumsub is not the active provider for this application"
}{
"success": false,
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal Server Error"
}Onboarding
Create an application
Starts onboarding for the signed-in user. Set isCompany to choose the individual (KYC) or company (KYB) flow. Personal and company details aren’t sent here; they’re collected later through the KYC schema. Returns the new application with its first status.currentStep.
POST
/
v1
/
applications
Create an application
curl --request POST \
--url https://api.next.orenda.finance/v1/applications \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"isCompany": false,
"email": "ada.lovelace@example.com"
}
'import requests
url = "https://api.next.orenda.finance/v1/applications"
payload = {
"isCompany": False,
"email": "ada.lovelace@example.com"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({isCompany: false, email: 'ada.lovelace@example.com'})
};
fetch('https://api.next.orenda.finance/v1/applications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.next.orenda.finance/v1/applications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'isCompany' => false,
'email' => 'ada.lovelace@example.com'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.next.orenda.finance/v1/applications"
payload := strings.NewReader("{\n \"isCompany\": false,\n \"email\": \"ada.lovelace@example.com\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.next.orenda.finance/v1/applications")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"isCompany\": false,\n \"email\": \"ada.lovelace@example.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.next.orenda.finance/v1/applications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"isCompany\": false,\n \"email\": \"ada.lovelace@example.com\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"application": {
"applicationId": "app_5e8d2f1a",
"customerId": "cust_3f9a2b7e",
"isCompany": false,
"workflowStage": "NEW",
"onboardingV3": true,
"status": {
"currentStep": "KYC_INTERNAL",
"nextStep": "RISK",
"requiredActions": [
"complete-kyc"
]
},
"primaryApplicant": {
"firstName": "",
"lastName": "",
"email": "ada.lovelace@example.com"
},
"createdDateTime": "2026-06-18T10:32:00Z",
"updatedAt": "2026-06-18T10:32:00Z"
}
}
}{
"success": false,
"code": "VALIDATION_ERROR",
"message": "isCompany is required"
}{
"success": false,
"code": "UNAUTHORIZED",
"message": "Unauthorized"
}{
"success": false,
"code": "WEB_TOKEN_PROVIDER_MISMATCH",
"message": "Sumsub is not the active provider for this application"
}{
"success": false,
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal Server Error"
}Authorizations
The user's access_token from authentication. The program and environment (sandbox/prod) are read from the token.
Body
application/json
⌘I