GnistAI GnistAI
Log in

domstol.no (Norwegian Courts)

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

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 type: api wrapper type type api wrapper api wrapper lifecycle: maintained lifecycle lifecycle maintained maintained Legal

Data source: domstol.no (Norwegian Courts Administration)

MCP Endpoint (Streamable HTTP) https://context.gnist.ai/mcp/domstol/
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)

search_hearings

Search Norwegian court hearing schedules (berammingslister).

Query upcoming and recent court hearings across all Norwegian courts.
Both date_from and date_to are required. Results include case details,
judges, attorneys, and hearing intervals.

Args:
date_from: Start date (ISO format, e.g. '2026-03-17').
date_to: End date (ISO format, e.g. '2026-03-24').
query: Optional free-text search (e.g. court name, case subject).
page: Page number (1-indexed, default 1).
page_size: Results per page (1-100, default 25).
sort_by: Sort field: 'rettsmoeteDato' (hearing date) or 'rettsmoete'.
sort_ascending: Sort direction (default true = earliest first).

Returns:
Dict with 'total' count, 'page', 'page_size', and 'hearings' list.
Each hearing has: id, court, case_number, subject, start_date, end_date,
judge, attorneys, parties, hearing_intervals.

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)
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_hearings",
    "arguments": {
      "date_from": "example",
      "date_to": "example"
    }
  }
}
list_courts

List all known Norwegian courts.

Returns the full list of courts (tingretter, lagmannsretter, jordskifteretter,
and Høyesterett) whose hearings appear in domstol.no schedules.

Returns:
Dict with 'count' and 'courts' list. Each court has a 'name' field.

JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "list_courts",
    "arguments": {}
  }
}
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")
JSON-RPC Request
{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "report_feedback",
    "arguments": {
      "feedback": "example"
    }
  }
}

Quick Start

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"}}}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/mcp/domstol/",
    headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
    json={
  "jsonrpc": "2.0",
  "method": "tools/call",
  "id": 1,
  "params": {
    "name": "search_hearings",
    "arguments": {
      "date_from": "example",
      "date_to": "example"
    }
  }
},
)
print(resp.json())

Related Toolkits (Legal)

Resources