Data source: Brreg, Doffin, Domstol, NAV Arbeidsplassen
https://context.gnist.ai/rest/company-intelligence/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (3)
company_profileComprehensive 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
| Parameter | Type | Required | Description |
|---|---|---|---|
org_number | string | required | Norwegian 9-digit organisation number (e.g. '923609016'). |
{
"org_number": "123456789"
}company_360Alias 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")
| Parameter | Type | Required | Description |
|---|---|---|---|
org_number | string | required | Norwegian 9-digit organisation number (e.g. '923609016'). |
{
"org_number": "123456789"
}report_feedbackReport 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'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
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"}'
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())