Open Government, Italy API
Overview
The Open Government Italy API (dati.gov.it) offers free access to Italian government open data published across national and regional agencies, including datasets on public administration, environment, and transportation. No API key is needed — the platform uses a CKAN-compatible API that accepts plain HTTP requests. It is a solid resource for exploring Italian civic data or building public-interest applications.
Beginner Tip
Query the CKAN API at https://www.dati.gov.it/opendata/api/3/action/package_search to search for datasets. Add ?q=your_keyword&rows=10 to the URL to retrieve up to 10 matching datasets in a single call.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Open Government, Italy",
"description": "Italy Government Open Data",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
success Indicates whether the API action was executed without errors result.count Total number of matching datasets in the catalog result.results[].name URL-safe identifier for the dataset, used in package_show calls result.results[].title Human-readable Italian title of the dataset result.results[].organization Government body responsible for publishing the dataset result.results[].resources Downloadable files or sub-APIs attached to the dataset Implementation Example
const url = "https://www.dati.gov.it/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Bank Negara Malaysia Open Data
⭐ Beginner's PickBank Negara Malaysia Open Data provides free access to official financial data published by Malaysia's central bank, including exchange rates, interest rates, and key economic indicators.
BCLaws
BCLaws gives you free access to the full text of British Columbia's laws and regulations.
Brazil
⭐ Beginner's PickBrasilAPI is a free, community-driven API that centralizes public data about Brazil in one easy-to-use place.
Brazil Central Bank Open Data
The Brazil Central Bank Open Data API provides free access to official financial and economic data from Brazil s central bank (Banco Central do Brasil).
Brazil Receita WS
Brazil Receita WS lets you look up official information about Brazilian companies using their CNPJ (tax registration number).