GnistAI GnistAI
Log in

NAV Jobs (Norwegian Labour Market)

Norwegian public job listings — search positions, employers, and occupations from NAV Arbeidsplassen.

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

Data source: NAV Arbeidsplassen (arbeidsplassen.nav.no)

MCP MCP Protocol

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

API REST API

API Root https://context.gnist.ai/rest/nav-jobs/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/nav-jobs/get_nav_job?uuid=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

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

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc nav-jobs

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

Install
pip install gnistai

Available Tools (3)

search_nav_jobs
Search Norwegian job listings from NAV Arbeidsplassen.
ParameterTypeRequiredDescription
queryanyoptionalFree-text search query for Norwegian job listings (e.g. 'utvikler', 'sykepleier', 'ingeniør').
countyanyoptionalNorwegian county name in uppercase, e.g. 'OSLO', 'ROGALAND', 'VESTLAND', 'TRØNDELAG', 'NORDLAND', 'VESTFOLD OG TELEMARK'.
municipalanyoptionalNorwegian municipality name in uppercase, e.g. 'OSLO', 'BERGEN', 'TRONDHEIM', 'STAVANGER', 'TROMSØ'. Added to the free-text query for approximate location filtering.
sizeintegeroptionalNumber of results — snapped to 25 or 100 (API constraint). Default 25. (default: 25)
offsetintegeroptionalNumber of results to skip for pagination (default 0). (default: 0)
get_nav_job
Get a single Norwegian job listing by its UUID from NAV Arbeidsplassen.
ParameterTypeRequiredDescription
uuidstringrequiredUUID of the job listing to retrieve.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related