/data/api/3/action/organization_listList every organization publishing into the Dutch open-data register — 33 of them on 2026-09-08, returned as slugs. Use a slug to scope a package_search with q=organization:<slug>. The list is short and stable, so cache it. Publishers include centraal-bureau-voor-de-statistiek, cbs-microdata, de-nederlandsche-bank, dienst-uitvoering-onderwijs, data-overheid-nl and a long tail of municipalities. There is NO kamer_van_koophandel organization: the KVK datasets are carried under data-overheid-nl, so q=organization:kamer_van_koophandel returns count 0 and finds nothing. Pass all_fields=true for titles and descriptions instead of bare slugs; note that CKAN's organization objects can carry internal account metadata, so treat any extra fields as internal and do not pass them on.
GET /data/api/3/action/organization_list — the 33 publishing organizations. Use a slug to scope package_search.
{
"properties": {
"all_fields": {
"description": "Return full organization objects (title, description, package_count) instead of bare slugs.",
"required": false,
"type": "boolean",
"x-parameter-location": "query"
},
"limit": {
"description": "Maximum organizations to return.",
"required": false,
"type": "integer",
"x-parameter-location": "query"
}
},
"type": "object"
}{
"properties": {
"result": {
"items": {
"description": "Organization slug, or a full object when all_fields=true.",
"type": "string"
},
"type": "array"
},
"success": {
"type": "boolean"
}
},
"type": "object"
}{}{
"result": [
"centraal-bureau-voor-de-statistiek-derden",
"cbs-microdata",
"centraal-bureau-voor-de-statistiek",
"de-nederlandsche-bank",
"data-overheid-nl",
"dienst-uitvoering-onderwijs",
"dataplatform",
"gemeente-amsterdam",
"gemeente-arnhem",
"gemeente-assen"
],
"success": true
}