GET /company
GET/v1/company
Returns a company object with a realistic name, registration number, industry, and country.
PARAMETERS
| Name | Type | Default | Description |
|---|---|---|---|
| country | string | random | ISO 3166-1 alpha-2 country code: GH, NG, KE, ZA, RW |
| count | int | 1 | Number of records to return. Min 1, max 100. |
EXAMPLE REQUEST
GET /v1/company?country=GH&count=1EXAMPLE RESPONSE
{
"country": "GH",
"count": 1,
"data": [{
"name": "Mensah & Associates Ltd",
"registration": "GH-CS-2019-012345",
"industry": "Financial Services",
"country": "GH"
}]
}