Open Government, Spain
Spain's open-data catalogue as a linked-data API
datos.gob.es, Spain's national open-data initiative, exposes its catalog through a linked-data-api (apidata) that returns JSON. Page through datasets and read DCAT metadata with URI-typed fields. No key required.
GET https://datos.gob.es/apidata/catalog/dataset?_pageSize=1&_page=0
{
"format": "linked-data-api",
"version": "0.2",
"result": {
"items": [
{
"_about": "https://datos.gob.es/catalogo/e05068001-mapas-estrategicos-de-ruido",
"accrualPeriodicity": "http://publications.europa.eu/resource/authority/frequency/OP_DATPRO"
}
]
}
}curl "https://datos.gob.es/apidata/catalog/dataset?_pageSize=1&_page=0"const res = await fetch("https://datos.gob.es/apidata/catalog/dataset?_pageSize=1&_page=0");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://datos.gob.es/apidata/catalog/dataset?_pageSize=1&_page=0")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/catalog/dataset?_pageSize=1&_page=0PROBEDSpain's open-data catalogue as a linked-data API
/catalogCatalog — documented GET route.
/catalog/1Catalog details by ID (example: 1).
/catalog?limit=10Catalog — documented GET route.
/catalog/search?q=testSearch by query parameters.
/catalog/dataset?limit=5Dataset — 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, Spain: common questions
Is Open Government, Spain free to use?
Yes — Open Government, Spain 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, Spain need an API key?
No — Open Government, Spain needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Open Government, Spain from the browser?
Not directly — Open Government, Spain doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Open Government, Spain up right now?
As of our last scheduled check, Open Government, Spain is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.