NAV jobs
NAV Arbeidsplassen is the official source for Norwegian job ads: title, employer, municipality, county, occupation category, application deadline and remote-work status. Data is retrieved from NAV's open job search (arbeidsplassen.nav.no/stillinger/api/search) — the same surface NAV itself serves its public search from, with no credential. The response also carries `facets`: real aggregations across the ENTIRE result set (ads per county, per occupation category, per sector and employment type), not just across the rows on the page. NOTE: the open search index does NOT carry ad body text, contact details or salary range — those fields exist only behind NAV's token-gated feed (pam-stilling-feed.nav.no) and are omitted here rather than returned empty. The upstream page is fixed at 25 hits; `size` up to 100 is implemented via page pagination.
—
Data volume
Real time
Updates
3
MCP tools
{
"data": "..."
}MCP integration
API endpoints
/feedSøk i aktive stillingsannonser (~12 600). Returnerer `items[]`, `totalItems` for HELE treffmengden og `facets` med aggregeringer per fylke/yrke/sektor/ansettelsesform.
- q optional
- Fritekstsøk i tittel, arbeidsgiver og annonsetekst
q=sykepleier - county optional
- Fylke — én verdi
county=OSLO - occupation optional
- Yrkeskategori (NAVs nivå-1-vokabular)
occupation=IT - sector optional
- Sektor
sector=Offentlig - extent optional
- Stillingsandel
extent=Heltid - engagementType optional
- Ansettelsesform
engagementType=Fast - published optional
- Publiseringsvindu — upstreams egne range-nøkler
published=now-7d - sort optional
- Sortering (default: publiseringsdato, nyeste først)
sort=expires - size optional
- Antall rader. Upstream-siden er fast 25; høyere verdier hentes ved sidepaginering (maks 4 sider).
size=50 - from optional
- Offset i treffmengden
from=25
Show curl example
# GET https://data.ketl.no/api/connectors/nav-stillinger/feed
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/nav-stillinger/feed"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/vacancySlå opp én stillingsannonse. MERK: den åpne søke-indeksen fører ikke annonsetekst, kontaktinfo eller lønnsspenn — de utelates framfor å returneres tomme.
- uuid required
- Stillingsannonse-UUID Stillings-UUID-er roterer — annonser utløper, så enhver statisk verdi 404-er etter noen uker. Den forrige (550e8400-e29b-41d4-a716-446655440000) var RFC 4122s eksempel-UUID og har aldri eksistert. Hent en gyldig UUID fra /api/connectors/nav-stillinger/feed.
Show curl example
# GET https://data.ketl.no/api/connectors/nav-stillinger/vacancy
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/nav-stillinger/vacancy"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.