Business Verification
POST: https://api.creditchek.africa/v1/identity/ke/verifyBusiness
Sample JSON request payload:
{
  "registration_no": "PVT-GYUPEKK"
}
Request Parameters​
| Name | Position | Required | Description | 
|---|---|---|---|
| token | Headers | True | app public key | 
| registration_no | body | True | business registration number | 
Example Request
---
curl --location --request POST 'https://api.creditchek.africa/v1/identity/ke/verifyBusiness' \
--header 'token: {{token}}' \
--data-raw '{
    "registration_no": "PVT-GYUPEKK"
}'
---
Sample Response
{
  "status": true,
  "data": {
    "id": 26,
    "verified": "true",
    "status": "registered",
    "registrationDate": "9 April 1998",
    "registrationNo": "PVT-FYUVQBQR",
    "businessName": "Sodapop Inc",
    "branch": null,
    "partners": [
      {
        "type": "director_shareholder",
        "name": "JANE DOE",
        "idType": "citizen",
        "idNumber": "67983412",
        "shares": [
          { "shareCount": "100", "nominalValue": null, "name": "ORDINARY" }
        ]
      },
      {
        "type": "director_shareholder",
        "name": "JOHN DOE",
        "idType": "citizen",
        "idNumber": "78653421",
        "shares": [
          { "shareCount": "850", "nominalValue": null, "name": "ORDINARY" }
        ]
      },
      {
        "type": "director_shareholder",
        "name": "kenya impact incubator limited",
        "idType": "local_company",
        "idNumber": "CPR/2015/652153",
        "shares": [
          { "shareCount": "50", "nominalValue": null, "name": "ORDINARY" }
        ]
      }
    ],
    "email": "[email protected]",
    "phoneNumber": "+254712345678",
    "postalAddress": "P O BOX 68999 - 00622",
    "physicalAddress": "Sodapop Plaza/Land Reference Number: 1/13413/Kamburu Drive , Kindaruma Road, Fl: 5, Room/Door:  502, LR NO 312/17830 HSE NO 6 THOGOTO ROAD NAIROBI",
    "shareCapital": [
      { "shareCount": 1000, "nominalValue": 1000.0, "name": "ORDINARY" }
    ],
    "encumbrances": []
  },
  "message": "successful",
  "error": false
}