Adhere’s BRS Search endpoint fetches and verifies business details using a means of identification that contains robust information about an individual through the Business Registration Service Search

Request Endpoint

POST {{BASE_URL}}/api/onboarding/kenya_kyc/brs_search/

  • Media-Type: application/json

Status Codes

  • 201 Created: The request was successful, and the business’ detail is returned successfully.
  • 400 Bad Request: The request could not be completed due to invalid or missing information.

Payload

{
    "company_name": "john doe ventures",
    "check_type": "CR12" // CR12, CR13, LLP
}

200 OK Response

{
  "success": true,
  "statusCode": 200,
  "message": "Business Registration Service Search details retrieved",
  "response_code": "00",
  "data": [
    {
      "name": "John Doe Ventures",
      "company_id": "ABC/2014/000111",
      "verified": false
    },
    {
      "name": "Dolly Ventures",
      "company_id": "DEF/2016/028721",
      "verified": true
    }
  ]
}