Umeå Open Data API
Overview
The Umeå Open Data API gives free access to public datasets published by the city of Umeå, Sweden, covering topics like transportation, demographics, and local services. No API key is required—you can start exploring directly from the interactive console at the API URL. It is a great sandbox for practicing open data queries in a real municipal context.
Beginner Tip
Use the interactive Swagger console at https://opendata.umea.se/api/explore/v2.1/console to browse available datasets and test queries before writing any code—no signup needed.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Umeå Open Data",
"description": "Open data of the city Umeå in northen Sweden",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
total_count Total number of datasets matching the query in the catalog. results Array of dataset metadata objects returned for this page. results[].dataset_id Unique identifier for the dataset, used in subsequent record queries. results[].metas.default.title Human-readable title of the dataset. results[].metas.default.modified Date the dataset was last updated by the city. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://opendata.umea.se/api/";
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.