GnistAI GnistAI
Log in

Nordic Registry

Look up any company across Norway, Sweden, Finland, and Denmark from one endpoint. Enter a name or national ID and get standardized company data regardless of which country's registry holds it.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 Business

Data source: Brønnøysundregistrene, Bolagsverket, PRH, CVR

MCP MCP Protocol

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

API REST API

API Root https://context.gnist.ai/rest/nordic-registry/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/nordic-registry/search_nordic_companies?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc nordic-registry

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

Install
pip install gnistai

Available Tools (4)

search_nordic_companies
Search for companies across all Nordic registries in parallel.
ParameterTypeRequiredDescription
querystringrequiredCompany name to search.
countryanyoptionalFilter: 'NO' (Norway), 'SE' (Sweden), 'FI' (Finland), 'DK' (Denmark). Omit for all.
limitintegeroptionalMax results per registry. (default: 10)
lookup_nordic_company
Look up a specific company by national ID across Nordic registries.
ParameterTypeRequiredDescription
national_idstringrequiredNational business ID. Auto-detected: 9 digits (NO), XXXXXX-XXXX (SE), XXXXXXX-X (FI), 8 digits (DK).
list_nordic_registry_sources
List all Nordic company registry sources and their coverage.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related