GnistAI GnistAI
Log in

Bolagsverket Annual Reports

Swedish annual reports — digitally filed årsredovisningar from Bolagsverket.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 type: api wrapper type type api wrapper api wrapper lifecycle: maintained lifecycle lifecycle maintained maintained Legal

Data source: Bolagsverket (Swedish Companies Registration Office)

REST Bridge Endpoint https://context.gnist.ai/rest/bolagsverket-arsredovisning/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (3)

list_bolagsverket_annual_reports

List annual reports (årsredovisningar) filed with Bolagsverket for a Swedish company.

Returns metadata for each digitally submitted annual report, including
document ID, file format, reporting period end date, and registration date.

Args:
org_number: Swedish organisation number — 10 digits.

Returns:
List of annual report metadata, or empty list if none found.

ParameterTypeRequiredDescription
org_numberstringrequiredSwedish organisation number — 10 digits, with or without hyphen (e.g. "5564866993", "556486-6993").
Request Body
{
  "org_number": "123456789"
}
get_bolagsverket_annual_report_info

Get download information for a specific Bolagsverket annual report.

The annual report is a ZIP file containing the iXBRL filing.

Args:
document_id: Document ID obtained from list_bolagsverket_annual_reports.

Returns:
Download info including URL and format, or {"error": "not_found"}.

ParameterTypeRequiredDescription
document_idstringrequiredDocument ID from the list_bolagsverket_annual_reports result.
Request Body
{
  "document_id": "example"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/bolagsverket-arsredovisning/list_bolagsverket_annual_reports" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"org_number": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/bolagsverket-arsredovisning/list_bolagsverket_annual_reports",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "org_number": "example"
},
)
print(resp.json())

Related Toolkits (Legal)

Resources