Get customer by uniqueId or account number
curl --request GET \
--url https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId} \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>'import requests
url = "https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}"
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apiKey: '<api-key>', apiSecret: '<api-key>'}};
fetch('https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}', 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://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apiKey: <api-key>",
"apiSecret: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "Cdd customer fetched successfully",
"data": {
"customer": {
"_id": "67f50d48c2a7d1f2b6e99389",
"name": "Aisha Bello",
"uniqueId": "CUS-10001",
"type": "individual",
"status": "active",
"channel": "WEB_PORTAL",
"cddStatus": "pending review",
"riskTier": "medium",
"overallRiskRating": {
"riskLevel": "medium",
"riskScore": 62,
"user": {
"firstName": "Risk",
"lastName": "Officer"
}
},
"cddVerificationStatus": "Awaiting Confirmation",
"createdAt": "2026-03-25T10:25:00.000Z"
},
"verifications": {
"id": [
{
"key": "bvn",
"name": "BVN Verification",
"status": "Verified",
"requestId": "67f510d8c2a7d1f2b6e99401",
"lastRunAt": "2026-03-25T10:40:00.000Z"
}
],
"others": [
{
"key": "pep",
"name": "PEP Screening",
"status": "Awaiting Confirmation",
"requestId": "67f510d8c2a7d1f2b6e99401",
"lastRunAt": "2026-03-25T10:40:00.000Z"
}
]
},
"runningCdd": null,
"analysis": "Customer has moderate risk due to occupation and transaction pattern."
}
}Customer Due Diligence
Fetch Customers
GET api/v1/cdd/customers/{uniqueId}
Get customer by uniqueId or account number
curl --request GET \
--url https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId} \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>'import requests
url = "https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}"
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apiKey: '<api-key>', apiSecret: '<api-key>'}};
fetch('https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}', 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://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apiKey: <api-key>",
"apiSecret: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmacdd.sabipay.com/api/v1/cdd/customers/{uniqueId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"message": "Cdd customer fetched successfully",
"data": {
"customer": {
"_id": "67f50d48c2a7d1f2b6e99389",
"name": "Aisha Bello",
"uniqueId": "CUS-10001",
"type": "individual",
"status": "active",
"channel": "WEB_PORTAL",
"cddStatus": "pending review",
"riskTier": "medium",
"overallRiskRating": {
"riskLevel": "medium",
"riskScore": 62,
"user": {
"firstName": "Risk",
"lastName": "Officer"
}
},
"cddVerificationStatus": "Awaiting Confirmation",
"createdAt": "2026-03-25T10:25:00.000Z"
},
"verifications": {
"id": [
{
"key": "bvn",
"name": "BVN Verification",
"status": "Verified",
"requestId": "67f510d8c2a7d1f2b6e99401",
"lastRunAt": "2026-03-25T10:40:00.000Z"
}
],
"others": [
{
"key": "pep",
"name": "PEP Screening",
"status": "Awaiting Confirmation",
"requestId": "67f510d8c2a7d1f2b6e99401",
"lastRunAt": "2026-03-25T10:40:00.000Z"
}
]
},
"runningCdd": null,
"analysis": "Customer has moderate risk due to occupation and transaction pattern."
}
}⌘I