View
Get new metadata view for a company.
View as MarkdownReturns an updated metadata view for the specified company.
Endpoint
GET /api/v1/companies/:company_id/viewParameters
| Parameter | Type | In | Description |
|---|---|---|---|
company_id | integer | path | The unique identifier of the company. |
Code Examples
Get company view
import requests
url = 'https://statsnet.co/api/v1/companies/12345/view'
headers = {
'Authorization': 'Bearer sk_live_YOUR_KEY',
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers).json()
print(response)Response
The response body has no {"ok": ...} envelope — it is a single meta array of localized key/value pairs (labels come back in Russian when the request language is ru).
Success response
{
"meta": [
{ "key": "Shareholders", "value": "1 shareholder" },
{ "key": "Officers", "value": "1 officers" },
{ "key": "Scoring", "value": "" },
{ "key": "Counterparties", "value": "12" },
{ "key": "Certificates", "value": "2" },
{ "key": "Events", "value": "0" },
{ "key": "Debtors", "value": "1" },
{ "key": "Jobs", "value": "5" },
{ "key": "Domains", "value": "1" },
{ "key": "Court cases", "value": "0" },
{ "key": "Bank accounts", "value": "3" }
]
}Error Handling
Errors are returned as {"status": <HTTP code>, "message": "<text>"}.
Error response
{
"status": 403,
"message": "access denied"
}