Get Company
Retrieve detailed information about a company by its ID.
View as MarkdownReturns comprehensive company data including general info, officers, shareholders, contacts, addresses, financials, and more.
Endpoint
GET /api/v1/companies/:company_idParameters
| Parameter | Type | In | Description |
|---|---|---|---|
company_id | integer | path | The unique identifier of the company. |
Code Examples
Get company by ID
import requests
url = 'https://api.statsnet.co/api/v1/companies/12345'
headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers).json()
print(response)Response
Success response
{
"ok": true,
"company": {
"_id": "58725961",
"identifier": "302233483",
"name": "ULKAN UZBEK QURILISH MCHJ",
"name_en": "ULKAN UZBEK QURILISH MCHJ",
"name_native": "ULKAN UZBEK QURILISH MCHJ",
"legal_form": "llc",
"company_size": null,
"jurisdiction": "uz",
"industry": null,
"status": "Active",
"ownership_type": "private",
"vat_payer": null,
"inactive": false,
"addresses": [],
"contacts": [],
"financials": [],
"headcount": [],
"identifiers": [{ "type": "inn", "number": "302233483" }],
"officers": [],
"shareholders": [],
"risks": [],
"capital": { "share_capital": 264264, "paid_up_capital": 0, "currency": "USD" },
"incorporation_date": null,
"dissolution_date": null,
"created_at": "2021-01-14T00:06:22.439Z",
"updated_at": "2021-01-15T13:24:54.248Z"
}
}Error Handling
Error response
{
"ok": false,
"error": {
"code": 403,
"message": "Forbidden"
}
}