GnistAI GnistAI
Log in

domstol.no (Norwegian Courts)

Norwegian court hearing schedules — search upcoming and recent hearings across all courts.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Legal

Data source: domstol.no (Norwegian Courts Administration)

MCP MCP Protocol

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

API REST API

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

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/domstol/search_hearings?date_from=example&date_to=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc domstol

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

Install
pip install gnistai

Available Tools (3)

search_hearings
Search Norwegian court hearing schedules (berammingslister).
ParameterTypeRequiredDescription
date_fromstringrequiredStart date (ISO format, e.g. '2026-03-17').
date_tostringrequiredEnd date (ISO format, e.g. '2026-03-24').
queryanyoptionalOptional free-text search (e.g. court name, case subject).
pageintegeroptionalPage number (1-indexed, default 1). (default: 1)
page_sizeintegeroptionalResults per page (1-100, default 25). (default: 25)
sort_bystringoptionalSort field: 'rettsmoeteDato' (hearing date) or 'rettsmoete'. (default: "rettsmoeteDato")
sort_ascendingbooleanoptionalSort direction (default true = earliest first). (default: true)
list_courts
List all known Norwegian courts.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related