APIs#
What is an API?#
API stands for Application Programming Interface. It is an interface using which you or another computer can communicate with a computer by sending requests.
APIs for downloading OpenStreetMap (OSM)#
There are many ways to download OSM data. e.g.
Geofabrik Download Server: download data region-wise
https://overpass-turbo.eu/: download specific data
more options on https://wiki.openstreetmap.org/wiki/Downloading_data
The ohsome API#
API to download and analyse OSM data and its history
Developed by
Open source project on GIScience/ohsome-api

Fig. 3 Sending a request to the ohsome API and retrieving data#
What can you do with it?#
Download OSM data

Fig. 4 Extract trees mapped in Heidelberg Bahnstadt#
Download the history of OSM features

Fig. 5 Temporal evolution of buildings with (green) and without address (red) in OSM within Heidelberg.#
Learn how to create this animation here
Count the number of active OSM users

Fig. 6 Number of active OSM users#
How to send a request to the ohsome API#
Endpoints are different types of requests, e.g.
Download OSM features with geometry: https://api.ohsome.org/v1/elements/geometry
Download features with centroids: https://api.ohsome.org/v1/elements/centroid
Count features within an area: https://api.ohsome.org/v1/elements/count
See documentation for full list of endpoints on Data Extraction and Data Aggregation.
Parameters specify the request, e.g. time, spatial boundary, OSM tags
Example: Query all trees in Heidelberg’s Bahnstadt on 1. Nov 2022#
Endpoint: https://api.ohsome.org/v1/elements/geometry
Parameters
Spatial boundary: bboxes=8.65044,49.39118,8.68794,49.40992
OSM Tag Filter: filter=natural=tree
Time: time=2022-11-01
Send as POST Request (recommended)
Requires a program to send requests e.g., cUrl in the command line
curl -X POST \
--data-urlencode "bboxes=8.65443,49.39444,8.68533,49.40824" \
--data-urlencode "time=2022-11-01" \
--data-urlencode "filter=natural=tree" \
-o trees_2022.geojson \
"https://api.ohsome.org/v1/elements/geometry"
Result

Fig. 7 Trees in Heidelberg Bahnstadt mapped in OSM up until 1. Nov 2021#
Alternative: Send as GET Request via the browser
The same query can be sent as a GET request:
Query URL: {Endpoint}?{parameter}&{parameter}…
Example: Click on the link below to send the request via the broswer
There are other APIs such as the emissions API which only offer GET requests. (see API documentation)