Get Company (Paid)
Retrieve full company data with premium access.
View as MarkdownReturns the full company record with all available data fields. Requires a Premium subscription plan.
Endpoint
GET /api/v1/companies/:company_id/paidParameters
| Parameter | Type | In | Description |
|---|---|---|---|
company_id | integer | path | The unique identifier of the company. |
Code Examples
Get company (paid)
import requests
url = 'https://api.statsnet.co/api/v1/companies/12345/paid'
headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers).json()
print(response)Response
The response structure is the same as Get Company, but includes all available data fields without restrictions.
Success response
{
"ok": true,
"company": {
"_id": "58725961",
"identifier": "302233483",
"name": "ULKAN UZBEK QURILISH MCHJ",
"name_en": "ULKAN UZBEK QURILISH MCHJ",
"legal_form": "llc",
"jurisdiction": "uz",
"status": "Active",
"officers": [],
"shareholders": [],
"financials": [],
"risks": []
},
"is_full": true
}Error Handling
Error response
{
"ok": false,
"error": {
"code": 403,
"message": "Forbidden"
}
}