GnistAI GnistAI
Log in

Bolagsverket Annual Reports

Swedish annual reports — digitally filed årsredovisningar from Bolagsverket.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Legal

Data source: Bolagsverket (Swedish Companies Registration Office)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/bolagsverket-arsredovisning/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-bolagsverket-arsredovisning": {
      "url": "https://context.gnist.ai/mcp/bolagsverket-arsredovisning/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/bolagsverket-arsredovisning/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "list_bolagsverket_annual_reports", "arguments": {"org_number": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/bolagsverket-arsredovisning/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/bolagsverket-arsredovisning/list_bolagsverket_annual_reports?org_number=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc bolagsverket-arsredovisning

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (3)

list_bolagsverket_annual_reports
List annual reports (årsredovisningar) filed with Bolagsverket for a Swedish company.
ParameterTypeRequiredDescription
org_numberstringrequiredSwedish organisation number — 10 digits, with or without hyphen (e.g. "5564866993", "556486-6993").
get_bolagsverket_annual_report_info
Get download information for a specific Bolagsverket annual report.
ParameterTypeRequiredDescription
document_idstringrequiredDocument ID from the list_bolagsverket_annual_reports result.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related