GnistAI GnistAI
Log in

Getting Started with Company Intelligence

Norwegian company due diligence — registry data, leadership, procurement history, court hearings, and job listings from multiple government sources.

All Tutorials   |   Overview   |   Playground   |   MCP   |   REST API   |   Home
Finance

Data source: Brreg, Doffin, Domstol, NAV Arbeidsplassen

Overview

Company Intelligence builds a holistic view by combining data from Brreg, Doffin, Domstol, NAV Arbeidsplassen. Rather than querying each source independently, you get a unified interface with 3 tools. This tutorial shows you how to use each one.

Prerequisites

  1. Sign up at https://context.gnist.ai/signup for a free API key (100 calls/day).
  2. Choose your integration method: MCP protocol or REST API.

Connect via MCP

Add to your MCP client config (Claude Desktop, Cursor, etc.):

MCP Config
{
  "mcpServers": {
    "gnist-company-intelligence": {
      "url": "https://context.gnist.ai/mcp/company-intelligence/",
      "headers": {
        "Gnist-API-Key": "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').
curl -X POST "https://context.gnist.ai/mcp/company-intelligence/" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "company_profile", "arguments": {"org_number": "'923609016'"}}}'
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/company-intelligence/",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={'id': 1,
 'jsonrpc': '2.0',
 'method': 'tools/call',
 'params': {'arguments': {'org_number': "'923609016'"},
            'name': 'company_profile'}},
)
print(resp.json())

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').
curl -X POST "https://context.gnist.ai/mcp/company-intelligence/" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "company_360", "arguments": {"org_number": "'923609016'"}}}'
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/company-intelligence/",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={'id': 1,
 'jsonrpc': '2.0',
 'method': 'tools/call',
 'params': {'arguments': {'org_number': "'923609016'"}, 'name': 'company_360'}},
)
print(resp.json())

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)
curl -X POST "https://context.gnist.ai/mcp/company-intelligence/" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "report_feedback", "arguments": {"feedback": "example"}}}'
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/company-intelligence/",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={'id': 1,
 'jsonrpc': '2.0',
 'method': 'tools/call',
 'params': {'arguments': {'feedback': 'example'}, 'name': 'report_feedback'}},
)
print(resp.json())

FAQ

What data does Company Intelligence provide?

Norwegian company due diligence — registry data, leadership, procurement history, court hearings, and job listings from multiple government sources. It exposes 3 tools: company_profile, company_360, report_feedback.

What do I need to get started?

A Gnist API key (free tier: 100 calls/day). Sign up at https://context.gnist.ai/signup.

What format does the Company Intelligence API return?

JSON, via either MCP protocol (JSON-RPC 2.0) or REST API.

Next Steps

Related Tutorials