Available Maps
Purpose
Use this endpoint to find the map versions available for an area. The returned version can be passed
as the optional mapVersion field of the
Selected Link analysis creation endpoint
and the
Flow matrix analysis creation endpoint,
so that map-matching runs on a map that matches your analysis period.
The endpoint takes the map generation as the last path segment. A version 2 analysis runs on TomTom
Orbis Maps, so use ORBIS.
Request data
HTTPS Method: GET
Format
https://api.tomtom.com/origindestination/1/maps/{mapType}?boundingBox={lonMin,latMin,lonMax,latMax}&from={startDate}&to={endDate}&onlyVolumeVersions={onlyVolumeVersions}&key={Your_API_Key}Example
https://api.tomtom.com/origindestination/1/maps/ORBIS?boundingBox=2.28974,48.87338,2.29797,48.87478&from=2026-03-02&to=2026-03-08&key={Your_API_Key}Request parameters
The following table describes all request parameters that can be used. Required parameters must be included for the call to succeed. Optional parameters may be used.
Required parameters | Description |
|---|---|
| Authorization key for access to the API. Value: Your valid API Key. |
| Path segment that determines the map generation used. |
| Coordinates defining a boundingbox in the following format: longitudeLeftDown,latitudeLeftDown,longitudeRightUpper,latitudeRightUpper. Value: 4 comma-separated float numbers. |
Optional parameters | Description |
|---|---|
| First day of the period you intend to analyze, in Together with Default value: none. Without it the |
| Last day of the period you intend to analyze, in The Default value: none. |
| When Requires Default value: |
Response data
The response returns the map versions available in the bounding box, sorted by release time, newest
first. For ORBIS, versions older than the first production Orbis map are not listed and only one
version per calendar month is returned.
Response example
{ "maps": [ {"type":"OPEN_DSEG","version":"{map_version}","releaseTimestamp":"1772409600000","recommended":true}, {"type":"OPEN_DSEG","version":"{previous_map_version}","releaseTimestamp":"1769904000000","recommended":false}, {"type":"OPEN_DSEG","version":"{older_map_version}","releaseTimestamp":"1767225600000","recommended":false} ]}Response structure
Field | Description |
|---|---|
| Available map versions, sorted by release time, newest first. |
| Name of the map the version belongs to. |
| Map version. Pass this value as |
| Release time of the map version, in milliseconds since the Unix epoch. |
| Whether the map version covers the period given by |
Errors
If there is an error in the supplied parameters or any other internal problem, an error response is generated in the requested format.
Response codes
Code | Meaning & possible causes |
|---|---|
| OK |
| Bad Request |
| Unauthorized |
| Forbidden |
| Internal Server Error |