GnistAI GnistAI
Log in

Brønnøysund (Brreg)

The official Norwegian business registry. Look up any Norwegian company by org number or name — get company details, roles, ownership, and financial filings from Brønnøysundregistrene.

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

Data source: Brønnøysundregistrene

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/brreg/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-brreg": {
      "url": "https://context.gnist.ai/mcp/brreg/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/brreg/" \
  -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": "lookup_brreg_company", "arguments": {"org_number": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/brreg/

6 endpoints available:

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

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc brreg

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

Install
pip install gnistai

Available Tools (6)

lookup_brreg_company
Look up a Norwegian company by its 9-digit organisation number.
ParameterTypeRequiredDescription
org_numberstringrequiredNorwegian org number — 9 digits, with or without spaces/dashes (e.g. "923609016", "923 609 016").
search_brreg_companies
Search the Norwegian Business Registry by name and/or attributes.
ParameterTypeRequiredDescription
nameanyoptionalCompany name or partial name to search for (case-insensitive).
municipality_codeanyoptional4-digit Norwegian municipality code (kommunenummer), e.g. "0301" for Oslo.
industry_codeanyoptionalNACE industry code, e.g. "62.010" for software development.
legal_formanyoptionalLegal form code, e.g. "AS" (private limited), "ASA" (public limited), "ENK" (sole trader), "DA" (general partnership).
max_resultsintegeroptionalMaximum number of results to return (1–50, default 10). (default: 10)
get_brreg_company_roles
Get the leadership roles for a Norwegian company.
ParameterTypeRequiredDescription
org_numberstringrequiredNorwegian org number — 9 digits, with or without spaces/dashes.
get_brreg_subsidiaries
Get direct subsidiaries of a Norwegian company.
ParameterTypeRequiredDescription
org_numberstringrequiredNorwegian org number of the parent company.
max_resultsintegeroptionalMaximum number of subsidiaries to return (1–50, default 50). (default: 50)
get_brreg_recent_changes
Get recent changes to monitored Norwegian companies.
ParameterTypeRequiredDescription
sincestringrequiredISO 8601 timestamp — return changes captured after this time (e.g. "2026-04-01T00:00:00Z").
limitintegeroptionalMaximum number of changes to return (1–100, default 50). (default: 50)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related