Government Applications
Get government application records for a company.
View as MarkdownReturns a paginated list of government applications filed by or related to the specified company.
Endpoint
GET /api/v1/companies/:company_id/gov_applicationsParameters
| Parameter | Type | In | Description |
|---|---|---|---|
company_id | integer | path | The unique identifier of the company. |
page | integer | body | Page number (default: 1). |
limit | integer | body | Records per page (default: 100). |
Code Examples
Get government applications
import requests
url = 'https://api.statsnet.co/api/v1/companies/12345/gov_applications'
headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers).json()
print(response)Response
Success response
{
"ok": true,
"gov_applications": [
{
"id": 1,
"application_number": "APP-2024-001",
"status": "approved",
"applicant_name": "Company Name LLC",
"applicant_identifier": "302233483",
"jurisdiction": "kz"
}
],
"total": 1,
"pagination_total": 1,
"pagination_offset": 0
}Error Handling
Error response
{
"ok": false,
"error": {
"code": 403,
"message": "Forbidden"
}
}