Metadata (Beta)
Get beta metadata for a company.
View as MarkdownReturns beta/experimental metadata for the specified company. This endpoint provides access to new data fields that are being tested before general availability.
Endpoint
GET /api/v1/companies/:company_id/meta/betaParameters
| Parameter | Type | In | Description |
|---|---|---|---|
company_id | integer | path | The unique identifier of the company. |
Code Examples
Get beta metadata
import requests
url = 'https://api.statsnet.co/api/v1/companies/12345/meta/beta'
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": "Company Name LLC",
"jurisdiction": "kz",
"extended_data": {}
}
}Error Handling
Error response
{
"ok": false,
"error": {
"code": 403,
"message": "Forbidden"
}
}