List styles versions

Service version: 1
Last edit: 2024.05.29
TomTom Orbis Maps

Important notes:

  • Orbis Maps Assets API is currently in public preview.
  • This API is powered by the TomTom Orbis Maps.
  • See the TomTom Orbis Maps documentation for more information on Orbis Maps.
  • See the Orbis Maps Assets API Migration page page for information on how to migrate and use the new Orbis Maps Assets API.
  • Use of the Orbis Maps Assets API requires an API Key with access rights to Assets API and, depending on the requested assets, Map Display API and/or Traffic API.

Purpose

  • The list styles versions functionality shows the user the available styles versions and allows them to choose the one needed.
  • It returns an array of style versions, along with URLs to services which allow retrieval of further listings of styles.
  • With the appropriate style version, users can list the specific styles available for that version using the list style functionality.

Request data

HTTPS method: GET

  • Constants and parameters enclosed in curly brackets { } must be replaced with their values.
  • Please see the following Request parameters section with the required and optional parameters tables for their values. The generic request format is as follows.

URL format

get
Generic URL request format
https://{baseURL}/maps/orbis/assets/styles?key={Your_API_Key}&apiVersion={API_Version}
get
URL request example
https://api.tomtom.com/maps/orbis/assets/styles?key={Your_API_Key}&apiVersion=1
get
curl command request example
curl 'https://api.tomtom.com/maps/orbis/assets/styles?key={Your_API_Key}&apiVersion=1'

Request parameters

The following table describes the parameters that can be used in a request.

  • Required parameters must be used or the call will fail.
  • Parameters and values are case-sensitive.
  • Optional parameters may be used.

Required parameters

Description

baseURL
string

The base URL for calling TomTom services.
Value: api.tomtom.com: The default global API endpoint.

apiVersion
string

The API version of the service to call.
This can be omitted if the version is already provided as a request header for the particular service, see HTTP request headers.
If the version is given both as a query parameter and as a header value, the one from the query parameter takes precedence.
Value: The current value is 1.

key
string

An API Key valid for the requested service.
Value: Your valid API Key.

Request headers

HTTP request headers are common in the Assets API service. For details, see HTTP request headers.

Response data

Successful response

For a single request, the service returns its response body in JSON format.

Response schema

Response body schema
1{
2 "versions": [
3 {
4 "version": "string",
5 "url": "string"
6 }
7 ]
8}

Response field structure

The following table describes JSON element fields that can appear in a response.

Field

Description

version
string

The version of the chosen style.

url
(inside versions array)
string

The URL to the chosen style matching the version.

Example

Response example
1{
2 "versions": [
3 {
4 "version": "0.0.0-0",
5 "url": "https://api.tomtom.com/maps/orbis/assets/styles/0.0.0-0?apiVersion=1&key={api_key}"
6 }
7 ]
8}

Response codes

HTTP response codes are common in the Assets API service. For details, see HTTP response codes.

Response headers

HTTP response headers are common in the Assets API service. For details, see HTTP response headers.