Main API Docs
Search
K

Uganda Business Lookup 🇺🇬

Lookup a business entity in Uganda
In Uganda, one can search an entity using at least one of Entity Name, Registration number or Reservation number. The Reservation number begins with "RC" and applies only to Uganda lookups.
POST https://api.appruve.co/v1/verifications/ug/business_info
The request object will take in the following parameters:
Input
Code
Object
Type
Required
Description
search_term
string
true
This can be any of the entity's parameters e.g a name 'test co', a registration number '12809000003' or reservation number 'RC943040'
Request {
string search_term="1234567" # Company Registration Number or Registered Business Name
}
The response object will look like this:
Output
Response
Object
Description
company_name
This is the entity's official name
company_status
This shows whether the entity has been active depending on if entity reports have been filled for the past year.
company_registration
This is the entity's registration number.
company_commencement_date
This is the date on which the entity was registered.
company_type
This is the legal type of entity e.g a limited liability company, a sole proprietorship etc
{
"company_id": "1234567",
"company_name": "JOHN DOE TECHNOLOGIES LTD",
"company_status": "Overdue on registration",
"company_registration": "R1234567",
"company_commencement_date": "2021-01-11",
"company_type": "Private Company limited by Shares"
}