GnistAI GnistAI
Log in

Company Intelligence

Everything you need to know about a Norwegian company in one place. Registry data, leadership, procurement history, court hearings, and job listings — pulled from multiple government sources in a single query.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 type: dataset aggregator type type dataset aggregator dataset aggregator Finance

Data source: Brreg, Doffin, Domstol, NAV Arbeidsplassen

REST Bridge Endpoint https://context.gnist.ai/rest/company-intelligence/
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)

company_profile

Comprehensive Norwegian company profile — registry, leadership, procurement, court, jobs, compliance, public records, and legislation.

Fetches company details from Brønnøysund Register (brreg), then enriches
with procurement (Doffin), court hearings (Domstol), job listings (NAV),
compliance screening (sanctions/offshore), public journal (eInnsyn),
and relevant legislation (Lovdata) in parallel.

Returns partial results if any enrichment source is unavailable.

Examples:
company_profile(org_number="923609016") # Equinor ASA
company_profile(org_number="985399077") # Vipps AS

ParameterTypeRequiredDescription
org_numberstringrequiredNorwegian 9-digit organisation number (e.g. '923609016').
Request Body
{
  "org_number": "123456789"
}
company_360

Alias for company_profile — comprehensive Norwegian company due diligence.

Same as company_profile(). Kept for backward compatibility with existing
composite tool users.

Examples:
company_360(org_number="923609016")

ParameterTypeRequiredDescription
org_numberstringrequiredNorwegian 9-digit organisation number (e.g. '923609016').
Request Body
{
  "org_number": "123456789"
}
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/company-intelligence/company_profile" \
  -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/company-intelligence/company_profile",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "org_number": "example"
},
)
print(resp.json())

Related Toolkits (Finance)

Resources