BVN Search
curl --request POST \
--url https://sigmacdd.sabipay.com/api/v1/kyc/bvn \
--header 'Content-Type: application/json' \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>' \
--data '
{
"idNumber": "22241887099"
}
'import requests
url = "https://sigmacdd.sabipay.com/api/v1/kyc/bvn"
payload = { "idNumber": "22241887099" }
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
apiKey: '<api-key>',
apiSecret: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({idNumber: '22241887099'})
};
fetch('https://sigmacdd.sabipay.com/api/v1/kyc/bvn', 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/kyc/bvn",
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([
'idNumber' => '22241887099'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sigmacdd.sabipay.com/api/v1/kyc/bvn"
payload := strings.NewReader("{\n \"idNumber\": \"22241887099\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
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://sigmacdd.sabipay.com/api/v1/kyc/bvn")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"idNumber\": \"22241887099\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmacdd.sabipay.com/api/v1/kyc/bvn")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"idNumber\": \"22241887099\"\n}"
response = http.request(request)
puts response.read_body{
"message": "BVN lookup successful",
"data": {
"idNumber": "22241887099",
"firstName": "ERNEST",
"lastName": "TARZUA",
"middleName": "NAJIME",
"dateOfBirth": "1989-04-15",
"gender": "male",
"phoneNumber": "08037997380",
"phoneNumber2": null,
"nationality": "Nigeria",
"address": "UNIVERSITY OF ABUJA MALE HOSTEL GWAGWALADA FCT ABUJA",
"photo": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD...",
"email": null,
"registrationDate": null,
"enrollmentBank": null,
"enrollmentBranch": null,
"levelOfAccount": null,
"lgaOfOrigin": "Gboko",
"lgaOfResidence": "Gwagwalada",
"stateOfOrigin": "Benue State",
"stateOfResidence": null,
"maritalStatus": "Single",
"nameOnCard": null,
"title": null,
"watchListed": "False",
"linkedNin": null
}
}{
"message": "Invalid request: idNumber is required"
}{
"message": "Invalid request: idNumber is required"
}KYC
BVN Search
POST api/v1/kyc/bvn
BVN Search
curl --request POST \
--url https://sigmacdd.sabipay.com/api/v1/kyc/bvn \
--header 'Content-Type: application/json' \
--header 'apiKey: <api-key>' \
--header 'apiSecret: <api-key>' \
--data '
{
"idNumber": "22241887099"
}
'import requests
url = "https://sigmacdd.sabipay.com/api/v1/kyc/bvn"
payload = { "idNumber": "22241887099" }
headers = {
"apiKey": "<api-key>",
"apiSecret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
apiKey: '<api-key>',
apiSecret: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({idNumber: '22241887099'})
};
fetch('https://sigmacdd.sabipay.com/api/v1/kyc/bvn', 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/kyc/bvn",
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([
'idNumber' => '22241887099'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sigmacdd.sabipay.com/api/v1/kyc/bvn"
payload := strings.NewReader("{\n \"idNumber\": \"22241887099\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("apiKey", "<api-key>")
req.Header.Add("apiSecret", "<api-key>")
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://sigmacdd.sabipay.com/api/v1/kyc/bvn")
.header("apiKey", "<api-key>")
.header("apiSecret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"idNumber\": \"22241887099\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sigmacdd.sabipay.com/api/v1/kyc/bvn")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["apiKey"] = '<api-key>'
request["apiSecret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"idNumber\": \"22241887099\"\n}"
response = http.request(request)
puts response.read_body{
"message": "BVN lookup successful",
"data": {
"idNumber": "22241887099",
"firstName": "ERNEST",
"lastName": "TARZUA",
"middleName": "NAJIME",
"dateOfBirth": "1989-04-15",
"gender": "male",
"phoneNumber": "08037997380",
"phoneNumber2": null,
"nationality": "Nigeria",
"address": "UNIVERSITY OF ABUJA MALE HOSTEL GWAGWALADA FCT ABUJA",
"photo": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD...",
"email": null,
"registrationDate": null,
"enrollmentBank": null,
"enrollmentBranch": null,
"levelOfAccount": null,
"lgaOfOrigin": "Gboko",
"lgaOfResidence": "Gwagwalada",
"stateOfOrigin": "Benue State",
"stateOfResidence": null,
"maritalStatus": "Single",
"nameOnCard": null,
"title": null,
"watchListed": "False",
"linkedNin": null
}
}{
"message": "Invalid request: idNumber is required"
}{
"message": "Invalid request: idNumber is required"
}⌘I