Premium Business Credit History
curl --request POST \
--url https://adhere-api.smartcomply.com/api/onboarding/business/premium/ \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"registration_number": "RC-123456"
}
'import requests
url = "https://adhere-api.smartcomply.com/api/onboarding/business/premium/"
payload = { "registration_number": "RC-123456" }
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({registration_number: 'RC-123456'})
};
fetch('https://adhere-api.smartcomply.com/api/onboarding/business/premium/', 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://adhere-api.smartcomply.com/api/onboarding/business/premium/",
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([
'registration_number' => 'RC-123456'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <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://adhere-api.smartcomply.com/api/onboarding/business/premium/"
payload := strings.NewReader("{\n \"registration_number\": \"RC-123456\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<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://adhere-api.smartcomply.com/api/onboarding/business/premium/")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"registration_number\": \"RC-123456\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://adhere-api.smartcomply.com/api/onboarding/business/premium/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"registration_number\": \"RC-123456\"\n}"
response = http.request(request)
puts response.read_body{
"status": "failed",
"data": [
"<unknown>"
],
"message": "<string>"
}{
"status": "failed",
"message": "Authentication credentials were not provided."
}Business
Premium Business Credit History
Retrieve a consolidated business credit report from both CRC and First Central bureaus.
POST
/
api
/
onboarding
/
business
/
premium
/
Premium Business Credit History
curl --request POST \
--url https://adhere-api.smartcomply.com/api/onboarding/business/premium/ \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"registration_number": "RC-123456"
}
'import requests
url = "https://adhere-api.smartcomply.com/api/onboarding/business/premium/"
payload = { "registration_number": "RC-123456" }
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({registration_number: 'RC-123456'})
};
fetch('https://adhere-api.smartcomply.com/api/onboarding/business/premium/', 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://adhere-api.smartcomply.com/api/onboarding/business/premium/",
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([
'registration_number' => 'RC-123456'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <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://adhere-api.smartcomply.com/api/onboarding/business/premium/"
payload := strings.NewReader("{\n \"registration_number\": \"RC-123456\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<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://adhere-api.smartcomply.com/api/onboarding/business/premium/")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"registration_number\": \"RC-123456\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://adhere-api.smartcomply.com/api/onboarding/business/premium/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"registration_number\": \"RC-123456\"\n}"
response = http.request(request)
puts response.read_body{
"status": "failed",
"data": [
"<unknown>"
],
"message": "<string>"
}{
"status": "failed",
"message": "Authentication credentials were not provided."
}The Premium Business Credit History endpoint aggregates credit data from both the CRC and First Central bureaus, providing a unified view of a business’s credit standing including loan history, performance summaries, director details, and credit enquiries.
Endpoint
POST /api/onboarding/business/premium/
Request
Headers
| Header | Value | Required |
|---|---|---|
x-access-token | Your API secret key | Yes |
Content-Type | application/json | Yes |
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
registration_number | string | Yes | The business RC or registration number |
Example
curl -X POST "https://adhere-api.smartcomply.com/api/onboarding/business/premium/" \
-H "x-access-token: YOUR_SECRET_KEY" \
-H "Content-Type: application/json" \
-d '{"registration_number": "RC123456"}'
Response
200 OK
Each field indata.score is an array of objects with source ("CRC" or "FIRST_CENTRAL") and value keys, providing per-bureau breakdowns.
| Field | Type | Description |
|---|---|---|
data.name | string | Business name |
data.businessType | string | Business type |
data.score.directors | array | Directors per bureau |
data.score.totalNoOfLoans | array | Total loans per bureau |
data.score.totalBorrowed | array | Total borrowed per bureau |
data.score.totalOutstanding | array | Outstanding balance per bureau |
data.score.totalOverdue | array | Overdue amount per bureau |
data.score.loanHistory | array | Loan history per bureau |
data.score.creditEnquiries | array | Credit enquiries per bureau |
data.score.loanPerformance | array | Loan performance per bureau |
data.score.bureauStatus | object | Success/failure status for each bureau |
{
"status": "success",
"data": {
"_id": "636e768d8215a2e2fb06cfde",
"business_reg_no": "RC123456",
"name": "CAPITALFIELD ASSET MGT LTD",
"businessType": "SMALLANDMEDIUMSCALEENTERPRISE",
"score": {
"totalNoOfLoans": [
{"source": "CRC", "value": 24},
{"source": "FIRST_CENTRAL", "value": 9}
],
"totalBorrowed": [
{"source": "CRC", "value": 567401372},
{"source": "FIRST_CENTRAL", "value": 1004525869.55}
],
"totalNoOfDelinquentFacilities": [
{"source": "CRC", "value": 1},
{"source": "FIRST_CENTRAL", "value": 0}
],
"bureauStatus": {
"crc": "success",
"firstCentral": "success"
}
},
"searchedDate": "2023-11-23T16:17:36.391Z"
},
"message": "Premium check successful"
}
400 Bad Request
{
"status": "failed",
"data": [],
"message": "Missing required fields"
}
401 Unauthorized
{
"status": "failed",
"message": "Authentication credentials were not provided."
}
⌘I

