Get time slots with time window id

This method allows you to get a list of avail­able time slots with­in a sin­gle time win­dow by pro­vid­ing it’s {id}.

Authorization and access

Autho­riza­tion process is described here. Each API request must also con­sist of unique Api-key obtained dur­ing appli­ca­tion reg­is­tra­tion togeth­er with client_id and client_secret.

Url parameters and connection settings

  • URL: https://api.platform.trans.eu
  • End­point: /ext/dock-scheduler-api/v2/time-window/{id}/possible
  • Http Method: GET

Headers

  • Accept: application/json
  • Con­tent-type: application/json
  • Autho­riza­tion: Bear­er {access_token}
  • Api-key: {unique_ap­p_api-key}

Available filters

List of available filters:

  • date_from (?date_from=07.23.2026)
  • date_to (?date_to=07.24.2026)

Impor­tant: the above fil­ters are manda­to­ry. The max­i­mum allowed peri­od between the start­ing 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.2026

Response 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
}