Open Government, Poland
Poland's national open-data portal as a JSON:API
dane.gov.pl exposes Poland's open-data catalog through a versioned JSON:API. This endpoint pages through 25,000+ datasets with their titles, licenses, and modification dates; drill in for resources and downloads. Keyless, and many datasets carry CC0 or CC BY licenses.
GET https://api.dane.gov.pl/1.4/datasets?page=1&per_page=2
{
"jsonapi": {
"version": "1.4"
},
"meta": {
"count": 25048,
"language": "pl"
},
"data": [
{
"type": "dataset",
"attributes": {
"license_name": "CC0 1.0",
"modified": "2024-03-19T19:14:09Z",
"downloads_count": 118
}
}
]
}curl "https://api.dane.gov.pl/1.4/datasets?page=1&per_page=2"const res = await fetch("https://api.dane.gov.pl/1.4/datasets?page=1&per_page=2");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.dane.gov.pl/1.4/datasets?page=1&per_page=2")
print(res.json())/1.4/datasets?page=1&per_page=2PROBEDPoland's national open-data portal as a JSON:API
/1.41 4 — documented GET route.
/1.4/11.4 details by ID (example: 1).
/1.4?limit=101 4 — documented GET route.
/1.4/search?q=testSearch by query parameters.
/1.4/datasets?limit=5Datasets — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Open Government, Poland: common questions
Is Open Government, Poland free to use?
Yes — Open Government, Poland is a free government API. Free tier: Free — no key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Open Government, Poland need an API key?
No — Open Government, Poland needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Open Government, Poland from the browser?
Yes — Open Government, Poland returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Open Government, Poland up right now?
As of our last scheduled check, Open Government, Poland is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.