GnistAI GnistAI
Log in

Doffin (Norwegian Public Procurement)

Norwegian public procurement notices from Doffin — search tenders, contract awards, and planning notices across all Norwegian public sector buyers.

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

Data source: Doffin (DFØ — Direktoratet for forvaltning og økonomistyring)

MCP MCP Protocol

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

API REST API

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

4 endpoints available:

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

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc doffin

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

Install
pip install gnistai

Available Tools (4)

search_notices
Search Norwegian public procurement notices on Doffin (doffin.no).
ParameterTypeRequiredDescription
textanyoptionalFree text search across notice titles and descriptions (e.g. "IKT", "rådgivning", "konsulentbistand", "veibygging").
statusanyoptionalFilter by notice status: 'ACTIVE' (open for bids), 'EXPIRED' (deadline passed), 'AWARDED' (contract awarded), 'CANCELLED'.
notice_typeanyoptionalFilter by notice type: 'COMPETITION' (open tender), 'RESULT' (award notice), 'PLANNING' (prior information), 'MODIFICATION', 'CORRIGENDUM'.
cpv_codeanyoptionalFilter by CPV (Common Procurement Vocabulary) code — 8-digit EU classification (e.g. '72000000' for IT services, '45000000' for construction).
locationanyoptionalFilter by Norwegian NUTS region code: 'NO03' (Oslo), 'NO08' (Vestland), 'NO0A' (Trøndelag), 'NO07' (Vestfold og Telemark), etc.
pageintegeroptionalPage number, 1-based (default 1). (default: 1)
page_sizeintegeroptionalResults per page (1-50, default 20). (default: 20)
get_notice
Get detailed information about a specific Doffin procurement notice.
ParameterTypeRequiredDescription
notice_idstringrequiredDoffin notice ID in format YYYY-NNNNNN (e.g. "2026-105515"). Found in search results.
get_doffin_changes
Get recent changes to Norwegian public procurement tenders from Doffin.
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