Folketinget open data
The Folketing's OData 3.0 API provides machine access to all parliamentary cases (bills, resolutions), documents, voting results and actors (MPs and parties). The Danish counterpart to Stortinget (NO) and the Riksdag (SE). CC-BY-4.0, no authentication required. Issue #1173.
200K rows
Data volume
Daily
Updates
4
MCP tools
{
"data": "..."
}MCP integration
API endpoints
/casesParlamentariske saker (filtrer på tittel/periode)
- q optional
- Fritekstsøk i sakstittel
- periode optional
- Samlings-/periode-ID
- top optional
- Antall treff (OData $top)
- skip optional
- Offset (OData $skip)
Show curl example
# GET https://data.ketl.no/api/connectors/ft-oda/cases
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/ft-oda/cases"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/documentsDokumenter (filtrer på tittel/dato)
- q optional
- Fritekstsøk i dokumenttittel
- since optional
- Kun dokumenter oppdatert etter dato (YYYY-MM-DD)
- top optional
- Antall treff (OData $top)
- skip optional
- Offset (OData $skip)
Show curl example
# GET https://data.ketl.no/api/connectors/ft-oda/documents
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/ft-oda/documents"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/votesAfstemninger (voteringsresultater)
- top optional
- Antall treff (OData $top)
- skip optional
- Offset (OData $skip)
Show curl example
# GET https://data.ketl.no/api/connectors/ft-oda/votes
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/ft-oda/votes"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/membersFolketingets medlemmer. Default er de SITTENDE (179), med parti, kjønn og storkreds — utledet av aktive gruppemedlemskap i inneværende samling. `scope=all` gir alle person-aktører ODA fører, inkludert avgåtte, uten parti.
- scope optional
- Populasjon: sittende medlemmer (default) eller alle historiske aktører
scope=current - q optional
- Fritekstsøk i aktørnavn
q=Wammen - type optional
- Aktørtype-ID. Kun relevant for scope=all
type=5 - top optional
- Antall treff (OData $top). Utelates for scope=current: hele salen returneres
top=20 - skip optional
- Offset (OData $skip)
skip=0
Show curl example
# GET https://data.ketl.no/api/connectors/ft-oda/members
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/ft-oda/members"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.