GET /company

GET/v1/company
Returns a company object with a realistic name, registration number, industry, and country.
NameTypeDefaultDescription
countrystringrandomISO 3166-1 alpha-2 country code: GH, NG, KE, ZA, RW
countint1Number of records to return. Min 1, max 100.
GET /v1/company?country=GH&count=1
{
  "country": "GH",
  "count": 1,
  "data": [{
    "name": "Mensah & Associates Ltd",
    "registration": "GH-CS-2019-012345",
    "industry": "Financial Services",
    "country": "GH"
  }]
}