Open Data Minneapolis API
Overview
Open Data Minneapolis provides free access to the city of Minneapolis's spatial (GIS) and non-spatial datasets including crime statistics, building permits, street infrastructure, and park locations. No API key is required. It is great for learning how to work with government open data and geographic information in civic tech projects.
Beginner Tip
Explore datasets using the CKAN API format at https://opendata.minneapolismn.gov/api/3/action/package_list to list all available datasets, then fetch individual dataset records using the resource ID. No authentication needed.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Open Data Minneapolis",
"description": "Spatial (GIS) and non-spatial city data for Minneapolis",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
success Whether the API call was successful result The main data payload; an array for list endpoints, an object for show endpoints result[].name Unique slug identifier for each dataset result[].title Human-readable title of the dataset result[].resources Array of downloadable files or API endpoints associated with the dataset Implementation Example
const url = "https://opendata.minneapolismn.gov/";
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 →18F
18F provides programmatic access to unofficial us federal government api development via REST API.
API Setu
API Setu is an Indian Government platform that aggregates a wide variety of official APIs covering KYC verification, business registration, education records, and employment data.
Archive.org
⭐ Beginner's PickThe Internet Archive API gives you programmatic access to the Wayback Machine and one of the world's largest digital libraries, containing archived websites, books, audio, video, and software.
BotsArchive
⭐ Beginner's PickBotsArchive provides a public database of Telegram bots with details returned in JSON format.
Callook.info
⭐ Beginner's PickCallook.info is a free API that lets you look up United States amateur (ham) radio callsigns.