URL parameters and connection settings
- URL: https://api.platform.trans.eu
- Endpoint: /ext/transports-api/api/rest/v1/transports/{transport_id}/trace
- Method: GET
Headers:
- Content type: app/json
- Accept: application/json
- Authorization: bearer {access_token}
- API Key: {unique_app_api_key}
Authorization
The authorization process is described Here. Each API request must also consist of a unique Api-key obtained during application registration together with client_id and client_secret.
Endpoint operation description
This endpoint returns the monitored route of a given transport order in GeoJSON format (Feature with MultiPoint geometry), including arrays of timestamps.
Parameters
Path
transport_id(UUID or system identifier of the monitored transport order).
Example Response
{
"type": "Feature",
"geometry": {
"type": "MultiPoint",
"coordinates": [
[17.02328, 51.10547],
[17.00543, 51.07439],
[16.97018, 51.04871],
...
[18.21338, 50.55592]
]
},
"properties": {
"timestamps": [
"2025-09-02T11:09:41.000Z",
"2025-09-02T11:10:41.000Z",
...
"2025-09-02T11:30:41.000Z"
],
"date_received": [
"2025-09-02T11:09:41.000Z",
"2025-09-02T11:10:41.000Z",
...
"2025-09-02T11:30:41.000Z"
]
}
}