This method allows you to get a list of available time slots within a single time window by providing it’s {id}.
Authorization and access
Authorization process is described here. Each API request must also consist of unique Api-key obtained during application registration together with client_id and client_secret.
Url parameters and connection settings
- URL: https://api.platform.trans.eu
- Endpoint: /ext/dock-scheduler-api/v2/time-window/{id}/possible
- Http Method: GET
Headers
- Accept: application/json
- Content-type: application/json
- Authorization: Bearer {access_token}
- Api-key: {unique_app_api-key}
Available filters
List of available filters:
- date_from (
?date_from=07.23.2026) - date_to (
?date_to=07.24.2026)
Important: the above filters are mandatory. The maximum allowed period between the starting date (date_from) and end date (date_to) is 3 days.
Example of use
https://api.platform.trans.eu/dock-scheduler-api/v2/time-window/{114054}/possible?date_from=07.23.2026&date_to=07.23.2026Response example:
{
"time_windows": {
"0": {
"2026-07-23": [
{
"start_time": "12:00:00",
"end_time": "12:10:00",
"ramp_id": 28744
},
{
"start_time": "12:10:00",
"end_time": "12:20:00",
"ramp_id": 28744
}
]
},
"28744": {
"2026-07-23": [
{
"start_time": "12:00:00",
"end_time": "12:10:00",
"ramp_id": 28744
},
{
"start_time": "12:10:00",
"end_time": "12:20:00",
"ramp_id": 28744
}
]
}
},
"ramps": {
"28744": {
"id": 28744,
"is_locked": false,
"is_active": true,
"time_zone": "Europe/Warsaw",
"operation_type": "any",
"name": "Rampa 1",
"ramp_type": "RAMP"
}
},
"quantity": 2
}