Object loading for loading freight spot.
Object unloading for unloading freight spot.
Object Fields
| Attribute | Type | Example | Description |
| coordinates | Object | Longitude and latitude for point of loading or unloading. The object is not present in the response of the “Get accepted freights list” function | |
| coordinates.latitude | Float | 54.142329074 | Latitude of the point along the freight route |
| coordinates.longitude | Float | 16.937462521 | Longitude of the point along the freight route |
| place | Object | Information related to single place on freight’s route | |
| place.country | String | PL | Country using ISO values (see dictionary) |
| place.locality | String | Wrocław | City name |
| place.postal_code | String | 50–900 | Postal code |
| timespans | Object | Timespan for loading or unloading operation. The object is not present in the response of the “Get accepted freights list” function | |
| timespans.begin | String | “2026–02-16T14:00:00+01:00” | Beginning of time slot for selected operation given according to the publisher’s time zone |
| timespans.begin_local | String | “2026–02-16T13:00:00+00:00” | Beginning of time slot for selected operation given according to the local timezone of the spot |
| timespans.end | String | “2026–02-16T14:00:00+01:00” | End of time slot for selected operation given according to the publisher’s time zone |
| timespans.end_local | String | “2026–02-16T13:00:00+00:00” | End of time slot for selected operation given according to the local timezone of the spot |
| timespans.timezone | String | ““Europe/London” | Local timezone of the spot |
Example Object Body
"loading": {
"coordinates": {
"latitude": 51.401383756,
"longitude": 0.015439825
},
"place": {
"country": "gb",
"locality": "London",
"postal_code": "BR11AA"
},
"timespans": {
"begin": "2026-02-16T14:00:00+01:00",
"begin_local": "2026-02-16T13:00:00+00:00",
"end": "2026-02-16T14:00:00+01:00",
"end_local": "2026-02-16T13:00:00+00:00",
"timezone": "Europe/London"
}
},
"unloading": {
"coordinates": {
"latitude": 54.690575014,
"longitude": 25.300950736
},
"place": {
"country": "lt",
"locality": "Vilnius",
"postal_code": "01100"
},
"timespans": {
"begin": "2026-02-17T07:00:00+01:00",
"begin_local": "2026-02-17T08:00:00+02:00",
"end": "2026-02-17T07:00:00+01:00",
"end_local": "2026-02-17T08:00:00+02:00",
"timezone": "Europe/Vilnius"
}
}