Overview
CitySDK provides open APIs for a selection of European cities, offering access to urban data such as public services, demographics, and points of interest. It is designed to help developers build city-aware applications that work across multiple European municipalities. The API is free to use and follows open data principles.
Beginner Tip
CitySDK data availability varies by city, so check the documentation for which endpoints are supported in your target city before building. Start with a city that has the most complete dataset for the smoothest development experience.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from CitySDK",
"description": "Open APIs for select European cities",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique identifier for the data layer or object within the CitySDK system. name Human-readable name describing the layer or city feature. geometry GeoJSON geometry object describing the shape or location of the feature. properties Key-value pairs containing metadata specific to the city feature, such as opening hours or contact info. updated_at ISO 8601 timestamp of the last update for this data record. Implementation Example
const url = "http://www.citysdk.eu/citysdk-toolkit/";
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 →administrative-divisons-db
⭐ Beginner's PickThe Administrative Divisions DB API provides a structured list of all administrative divisions (states, provinces, regions, cities) for countries around the world.
adresse.data.gouv.fr
adresse.data.gouv.fr provides programmatic access to address database of france, geocoding and reverse via REST API.
Airtel IP
⭐ Beginner's PickAirtel IP is a free, no-auth IP geolocation API that aggregates data from multiple sources to return the country associated with any given IP address.
bng2latlong
⭐ Beginner's Pickbng2latlong is a simple, free API that converts British National Grid (OSGB36) easting and northing coordinates into standard WGS84 latitude and longitude.
Cartes.io
⭐ Beginner's PickCartes.io is a free API that lets you create maps and add custom markers without signing up.