Home

Introduction

Container Tracking API

version 3

Container Tracking allows to determine the current position of a given container on the World Map. To track the location of the container, just specify bill of lading, container, booking number.

OpenAPI Specification

Start designing your API in minutes. The OpenAPI specification file enables you to learn and interact with API elements, including all available endpoints, input and output representations.

General information

Container Tracking API is organized around REST.
Our API has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

API endpoint#

1https://tracking.searates.com

All endpoints are only accessible via HTTPS and are located at tracking.searates.com

Tracking by any number

get/tracking

Get tracking information by Container number, Bill of Lading or Booking number.

Headers

Content-Typeapplication/json

Query Parameters
  • api_keyREQUIREDstring

    Your api key. If you do not have an api key - contact us to purchase a subscription.

  • numberREQUIREDstring

    Container number, Bill of Lading or Booking number.

  • sealineOptionalstring

    Standard Carrier Alpha Code (SCAC). A list of supported lines can be obtained from the following API - see GET /info/sealines

    If this parameter is empty or equal to auto or not represented at all in the query, we will try to determine the shipping line automatically.

    Default:auto

  • typeOptionalstring

    Type of shipment number

    CT - Container number

    BL - Bill of lading number

    BK - Booking number

    If this parameter will be empty or not presented at all in the query, we will try to determine the type of shipment number.

    Allowed values:CTBLBK

  • force_updateOptionalboolean

    Obtaining data directly from the shipping line or from a cache with minimal retention time. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

  • routeOptionalboolean

    If you need detailed route data, then set this parameter to true. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

  • aisOptionalboolean

    If you need AIS data by vessel - set this parameter to true. This parameter is taken into account only when the "route" parameter in the query parameters is true. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

Response example
1{
2  "status": "success",
3  "message": "OK",
4  "data": {
5    "metadata": {
6      "type": "BL",
7      "number": "ANT1671837",
8      "sealine": "CMDU",
9      "sealine_name": "CMA CGM",
10      "status": "IN_TRANSIT",
11      "updated_at": "2023-08-04 14:52:31",
12      "cache_expires": "2023-08-04 20:52:31",
13      "api_calls": {
14        "total": null,
15        "used": null,
16        "remaining": null
17      },
18      "unique_shipments": {
19        "total": 0,
20        "used": 0,
21        "remaining": 0
22      }
23    },
24    "locations": [
25      {
26        "id": 1,
27        "name": "Antwerp",
28        "state": "Flanders",
29        "country": "Belgium",
30        "country_code": "BE",
31        "locode": "BEANR",
32        "lat": 51.22047,
33        "lng": 4.40026,
34        "timezone": "Europe/Brussels"
35      },
36      {
37        "id": 2,
38        "name": "San Antonio",
39        "state": "Region de Valparaiso",
40        "country": "Chile",
41        "country_code": "CL",
42        "locode": "CLSAI",
43        "lat": -33.59473,
44        "lng": -71.60746,
45        "timezone": "America/Santiago"
46      }
47    ],
48    "facilities": [
49      {
50        "id": 1,
51        "name": "ANTWERP GATEWAY TERMINAL (K1700-K1710)",
52        "country_code": "BE",
53        "locode": "BEANR",
54        "bic_code": null,
55        "smdg_code": "1700",
56        "lat": 51.291944,
57        "lng": 4.265556
58      },
59      {
60        "id": 2,
61        "name": "PUERTO CENTRAL SAN ANTONIO",
62        "country_code": "CL",
63        "locode": "CLSAI",
64        "bic_code": null,
65        "smdg_code": "PCE",
66        "lat": -33.591667,
67        "lng": -71.616667
68      }
69    ],
70    "route": {
71      "prepol": {
72        "location": 1,
73        "date": "2023-06-22 07:12:00",
74        "actual": true
75      },
76      "pol": {
77        "location": 1,
78        "date": "2023-06-24 04:58:00",
79        "actual": true
80      },
81      "pod": {
82        "location": 2,
83        "date": "2023-08-03 08:25:00",
84        "actual": true,
85        "predictive_eta": null
86      },
87      "postpod": {
88        "location": null,
89        "date": null,
90        "actual": null
91      }
92    },
93    "vessels": [
94      {
95        "id": 1,
96        "name": "CMA CGM JACQUES JOSEPH",
97        "imo": 9729104,
98        "call_sign": "9HA4667",
99        "mmsi": 248473000,
100        "flag": "MT"
101      }
102    ],
103    "containers": [
104      {
105        "number": "SEKU9262561",
106        "iso_code": "45R1",
107        "status": "IN_TRANSIT",
108        "events": [
109          {
110            "order_id": 1,
111            "location": 1,
112            "facility": null,
113            "description": "Empty to shipper",
114            "event_type": "EQUIPMENT",
115            "event_code": "GTOT",
116            "status": "CEP",
117            "date": "2023-06-22 07:11:00",
118            "actual": true,
119            "is_additional_event": false,
120            "type": "land",
121            "transport_type": "TRUCK",
122            "vessel": null,
123            "voyage": null
124          },
125          {
126            "order_id": 2,
127            "location": 1,
128            "facility": 1,
129            "description": "Ready to be loaded",
130            "event_type": "EQUIPMENT",
131            "event_code": "GTIN",
132            "status": "CGI",
133            "date": "2023-06-23 18:55:00",
134            "actual": true,
135            "is_additional_event": false,
136            "type": "land",
137            "transport_type": "TRUCK",
138            "vessel": null,
139            "voyage": null
140          },
141          {
142            "order_id": 3,
143            "location": 1,
144            "facility": 1,
145            "description": "Loaded on board",
146            "event_type": "EQUIPMENT",
147            "event_code": "LOAD",
148            "status": "CLL",
149            "date": "2023-07-01 20:11:00",
150            "actual": true,
151            "is_additional_event": false,
152            "type": "sea",
153            "transport_type": "VESSEL",
154            "vessel": 1,
155            "voyage": "0WCFBS1MA"
156          },
157          {
158            "order_id": 4,
159            "location": 1,
160            "facility": 1,
161            "description": "Vessel Departure",
162            "event_type": "TRANSPORT",
163            "event_code": "DEPA",
164            "status": "VDL",
165            "date": "2023-07-02 09:56:00",
166            "actual": true,
167            "is_additional_event": false,
168            "type": "sea",
169            "transport_type": "VESSEL",
170            "vessel": 1,
171            "voyage": "0WCFBS1MA"
172          },
173          {
174            "order_id": 5,
175            "location": 2,
176            "facility": 2,
177            "description": "Vessel Arrival",
178            "event_type": "TRANSPORT",
179            "event_code": "ARRI",
180            "status": "VAD",
181            "date": "2023-08-03 08:25:00",
182            "actual": true,
183            "is_additional_event": false,
184            "type": "sea",
185            "transport_type": "VESSEL",
186            "vessel": 1,
187            "voyage": "0WCFCN1MA"
188          },
189          {
190            "order_id": 6,
191            "location": 2,
192            "facility": 2,
193            "description": "Discharged",
194            "event_type": "EQUIPMENT",
195            "event_code": "DISC",
196            "status": "CDD",
197            "date": "2023-08-03 20:37:00",
198            "actual": true,
199            "is_additional_event": false,
200            "type": "sea",
201            "transport_type": "VESSEL",
202            "vessel": 1,
203            "voyage": "0WCFCN1MA"
204          }
205        ]
206      },
207      {
208        "number": "TXGU9004469",
209        "iso_code": "45R1",
210        "status": "IN_TRANSIT",
211        "events": [
212          {
213            "order_id": 1,
214            "location": 1,
215            "facility": null,
216            "description": "Empty to shipper",
217            "event_type": "EQUIPMENT",
218            "event_code": "GTOT",
219            "status": "CEP",
220            "date": "2023-06-22 07:12:00",
221            "actual": true,
222            "is_additional_event": false,
223            "type": "land",
224            "transport_type": "TRUCK",
225            "vessel": null,
226            "voyage": null
227          },
228          {
229            "order_id": 2,
230            "location": 1,
231            "facility": 1,
232            "description": "Ready to be loaded",
233            "event_type": "EQUIPMENT",
234            "event_code": "GTIN",
235            "status": "CGI",
236            "date": "2023-06-24 04:58:00",
237            "actual": true,
238            "is_additional_event": false,
239            "type": "land",
240            "transport_type": "TRUCK",
241            "vessel": null,
242            "voyage": null
243          },
244          {
245            "order_id": 3,
246            "location": 1,
247            "facility": 1,
248            "description": "Loaded on board",
249            "event_type": "EQUIPMENT",
250            "event_code": "LOAD",
251            "status": "CLL",
252            "date": "2023-07-01 20:20:00",
253            "actual": true,
254            "is_additional_event": false,
255            "type": "sea",
256            "transport_type": "VESSEL",
257            "vessel": 1,
258            "voyage": "0WCFBS1MA"
259          },
260          {
261            "order_id": 4,
262            "location": 1,
263            "facility": 1,
264            "description": "Vessel Departure",
265            "event_type": "TRANSPORT",
266            "event_code": "DEPA",
267            "status": "VDL",
268            "date": "2023-07-02 09:56:00",
269            "actual": true,
270            "is_additional_event": false,
271            "type": "sea",
272            "transport_type": "VESSEL",
273            "vessel": 1,
274            "voyage": "0WCFBS1MA"
275          },
276          {
277            "order_id": 5,
278            "location": 2,
279            "facility": 2,
280            "description": "Vessel Arrival",
281            "event_type": "TRANSPORT",
282            "event_code": "ARRI",
283            "status": "VAD",
284            "date": "2023-08-03 08:25:00",
285            "actual": true,
286            "is_additional_event": false,
287            "type": "sea",
288            "transport_type": "VESSEL",
289            "vessel": 1,
290            "voyage": "0WCFCN1MA"
291          },
292          {
293            "order_id": 6,
294            "location": 2,
295            "facility": 2,
296            "description": "Discharged",
297            "event_type": "EQUIPMENT",
298            "event_code": "DISC",
299            "status": "CDD",
300            "date": "2023-08-03 21:02:00",
301            "actual": true,
302            "is_additional_event": false,
303            "type": "sea",
304            "transport_type": "VESSEL",
305            "vessel": 1,
306            "voyage": "0WCFCN1MA"
307          }
308        ]
309      }
310    ],
311    "route_data": {
312      "route": [
313        {
314          "path": [
315            [
316              51.22047,
317              4.400260000000003
318            ],
319            [
320              51.34122410356018,
321              4.349611577822486
322            ],
323            [
324              51.90474325350768,
325              4.113252274327465
326            ],
327            [
328              52.02549735706786,
329              4.062603852149948
330            ],
331            [
332              52.020467886132245,
333              4.028116051448592
334            ],
335            [
336              51.996997021766035,
337              3.867172981508844
338            ],
339            [
340              51.99196755083042,
341              3.8326851808074593
342            ],
343            [
344              51.65235156820585,
345              2.9667782036863457
346            ],
347            [
348              50.067476982624555,
349              -1.0741210228788702
350            ],
351            [
352              49.727861,
353              -1.9400280000000123
354            ],
355            [
356              49.54469854999999,
357              -2.366040450000014
358            ],
359            [
360              48.689940449999995,
361              -4.354098550000003
362            ],
363            [
364              48.506778,
365              -4.780111000000005
366            ],
367            [
368              46.89650295,
369              -7.833906850000005
370            ],
371            [
372              39.38188605,
373              -22.084954149999987
374            ],
375            [
376              37.771611,
377              -25.138750000000016
378            ],
379            [
380              33.54834435,
381              -33.31158744999999
382            ],
383            [
384              13.839766650000001,
385              -71.45149555
386            ],
387            [
388              9.6165,
389              -79.624333
390            ],
391            [
392              9.57897645,
393              -79.66644355
394            ],
395            [
396              9.40386655,
397              -79.86295944999999
398            ],
399            [
400              9.366343,
401              -79.90507
402            ],
403            [
404              9.3029338,
405              -79.85119885
406            ],
407            [
408              9.0070242,
409              -79.59980015
410            ],
411            [
412              8.943615,
413              -79.545929
414            ],
415            [
416              7.44394365,
417              -79.75072714999999
418            ],
419            [
420              0.44547734999999977,
421              -80.70645185
422            ],
423            [
424              -1.054194,
425              -80.91125
426            ],
427            [
428              -1.5369441,
429              -80.96287504999998
430            ],
431            [
432              -3.7897779000000003,
433              -81.20379194999998
434            ],
435            [
436              -4.272528,
437              -81.255417
438            ],
439            [
440              -4.52852385,
441              -81.23992529999998
442            ],
443            [
444              -5.72317115,
445              -81.16763069999999
446            ],
447            [
448              -5.979167,
449              -81.152139
450            ],
451            [
452              -10.126166900000001,
453              -79.72213905
454            ],
455            [
456              -29.4788331,
457              -73.04880595
458            ],
459            [
460              -33.625833,
461              -71.618806
462            ],
463            [
464              -33.62122932095881,
465              -71.61895928581441
466            ],
467            [
468              -33.59974548543325,
469              -71.61967461961495
470            ],
471            [
472              -33.595141806392064,
473              -71.61982790542936
474            ],
475            [
476              -33.595080035433256,
477              -71.61797271961495
478            ],
479            [
480              -33.59479177095881,
481              -71.60931518581441
482            ],
483            [
484              -33.59473,
485              -71.60746
486            ]
487          ],
488          "type": "SEA"
489        }
490      ],
491      "pin": [
492        -33.59473,
493        -71.60746
494      ]
495    }
496  }
497}

Tracking by container

[ deprecated ]

get/container

Get tracking information by container number. This operation has been marked as deprecated. Use GET /tracking

Headers

Content-Typeapplication/json

Query Parameters
  • api_keyREQUIREDstring

    Your api key. If you do not have an api key - contact us to purchase a subscription.

  • numberREQUIREDstring

    Container number

  • sealineOptionalstring

    Standard Carrier Alpha Code (SCAC). A list of supported lines can be obtained from the following API - see GET /info/sealines

    If this parameter is empty or equal to auto or not represented at all in the query, we will try to determine the shipping line automatically.

    Default:auto

  • force_updateOptionalboolean

    Obtaining data directly from the shipping line or from a cache with minimal retention time. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

  • routeOptionalboolean

    If you need detailed route data, then set this parameter to true. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

  • aisOptionalboolean

    If you need AIS data by vessel - set this parameter to true. This parameter is taken into account only when the "route" parameter in the query parameters is true. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

Response example
1{
2  "status": "success",
3  "message": "OK",
4  "data": {
5    "metadata": {
6      "type": "CT",
7      "number": "SEKU9262561",
8      "sealine": "CMDU",
9      "sealine_name": "CMA CGM",
10      "status": "IN_TRANSIT",
11      "updated_at": "2023-08-04 15:01:45",
12      "cache_expires": "2023-08-04 21:01:45",
13      "api_calls": {
14        "total": null,
15        "used": null,
16        "remaining": null
17      },
18      "unique_shipments": {
19        "total": 0,
20        "used": 0,
21        "remaining": 0
22      }
23    },
24    "locations": [
25      {
26        "id": 1,
27        "name": "Antwerp",
28        "state": "Flanders",
29        "country": "Belgium",
30        "country_code": "BE",
31        "locode": "BEANR",
32        "lat": 51.22047,
33        "lng": 4.40026,
34        "timezone": "Europe/Brussels"
35      },
36      {
37        "id": 2,
38        "name": "San Antonio",
39        "state": "Region de Valparaiso",
40        "country": "Chile",
41        "country_code": "CL",
42        "locode": "CLSAI",
43        "lat": -33.59473,
44        "lng": -71.60746,
45        "timezone": "America/Santiago"
46      }
47    ],
48    "facilities": [
49      {
50        "id": 1,
51        "name": "ANTWERP GATEWAY TERMINAL (K1700-K1710)",
52        "country_code": "BE",
53        "locode": "BEANR",
54        "bic_code": null,
55        "smdg_code": "1700",
56        "lat": 51.291944,
57        "lng": 4.265556
58      },
59      {
60        "id": 2,
61        "name": "PUERTO CENTRAL SAN ANTONIO",
62        "country_code": "CL",
63        "locode": "CLSAI",
64        "bic_code": null,
65        "smdg_code": "PCE",
66        "lat": -33.591667,
67        "lng": -71.616667
68      }
69    ],
70    "route": {
71      "prepol": {
72        "location": 1,
73        "date": "2023-06-22 07:11:00",
74        "actual": true
75      },
76      "pol": {
77        "location": 1,
78        "date": "2023-06-23 18:55:00",
79        "actual": true
80      },
81      "pod": {
82        "location": 2,
83        "date": "2023-08-03 08:25:00",
84        "actual": true,
85        "predictive_eta": null
86      },
87      "postpod": {
88        "location": null,
89        "date": null,
90        "actual": null
91      }
92    },
93    "vessels": [
94      {
95        "id": 1,
96        "name": "CMA CGM JACQUES JOSEPH",
97        "imo": 9729104,
98        "call_sign": "9HA4667",
99        "mmsi": 248473000,
100        "flag": "MT"
101      }
102    ],
103    "route_data": {
104      "route": [
105        {
106          "path": [
107            [
108              51.22047,
109              4.400260000000003
110            ],
111            [
112              51.34122410356018,
113              4.349611577822486
114            ],
115            [
116              51.90474325350768,
117              4.113252274327465
118            ],
119            [
120              52.02549735706786,
121              4.062603852149948
122            ],
123            [
124              52.020467886132245,
125              4.028116051448592
126            ],
127            [
128              51.996997021766035,
129              3.867172981508844
130            ],
131            [
132              51.99196755083042,
133              3.8326851808074593
134            ],
135            [
136              51.65235156820585,
137              2.9667782036863457
138            ],
139            [
140              50.067476982624555,
141              -1.0741210228788702
142            ],
143            [
144              49.727861,
145              -1.9400280000000123
146            ],
147            [
148              49.54469854999999,
149              -2.366040450000014
150            ],
151            [
152              48.689940449999995,
153              -4.354098550000003
154            ],
155            [
156              48.506778,
157              -4.780111000000005
158            ],
159            [
160              46.89650295,
161              -7.833906850000005
162            ],
163            [
164              39.38188605,
165              -22.084954149999987
166            ],
167            [
168              37.771611,
169              -25.138750000000016
170            ],
171            [
172              33.54834435,
173              -33.31158744999999
174            ],
175            [
176              13.839766650000001,
177              -71.45149555
178            ],
179            [
180              9.6165,
181              -79.624333
182            ],
183            [
184              9.57897645,
185              -79.66644355
186            ],
187            [
188              9.40386655,
189              -79.86295944999999
190            ],
191            [
192              9.366343,
193              -79.90507
194            ],
195            [
196              9.3029338,
197              -79.85119885
198            ],
199            [
200              9.0070242,
201              -79.59980015
202            ],
203            [
204              8.943615,
205              -79.545929
206            ],
207            [
208              7.44394365,
209              -79.75072714999999
210            ],
211            [
212              0.44547734999999977,
213              -80.70645185
214            ],
215            [
216              -1.054194,
217              -80.91125
218            ],
219            [
220              -1.5369441,
221              -80.96287504999998
222            ],
223            [
224              -3.7897779000000003,
225              -81.20379194999998
226            ],
227            [
228              -4.272528,
229              -81.255417
230            ],
231            [
232              -4.52852385,
233              -81.23992529999998
234            ],
235            [
236              -5.72317115,
237              -81.16763069999999
238            ],
239            [
240              -5.979167,
241              -81.152139
242            ],
243            [
244              -10.126166900000001,
245              -79.72213905
246            ],
247            [
248              -29.4788331,
249              -73.04880595
250            ],
251            [
252              -33.625833,
253              -71.618806
254            ],
255            [
256              -33.62122932095881,
257              -71.61895928581441
258            ],
259            [
260              -33.59974548543325,
261              -71.61967461961495
262            ],
263            [
264              -33.595141806392064,
265              -71.61982790542936
266            ],
267            [
268              -33.595080035433256,
269              -71.61797271961495
270            ],
271            [
272              -33.59479177095881,
273              -71.60931518581441
274            ],
275            [
276              -33.59473,
277              -71.60746
278            ]
279          ],
280          "type": "SEA"
281        }
282      ],
283      "pin": [
284        -33.59473,
285        -71.60746
286      ]
287    },
288    "container": {
289      "number": "SEKU9262561",
290      "iso_code": "45R1",
291      "status": "IN_TRANSIT",
292      "events": [
293        {
294          "order_id": 1,
295          "location": 1,
296          "facility": null,
297          "description": "Empty to shipper",
298          "event_type": "EQUIPMENT",
299          "event_code": "GTOT",
300          "status": "CEP",
301          "date": "2023-06-22 07:11:00",
302          "actual": true,
303          "is_additional_event": false,
304          "type": "land",
305          "transport_type": "TRUCK",
306          "vessel": null,
307          "voyage": null
308        },
309        {
310          "order_id": 2,
311          "location": 1,
312          "facility": 1,
313          "description": "Ready to be loaded",
314          "event_type": "EQUIPMENT",
315          "event_code": "GTIN",
316          "status": "CGI",
317          "date": "2023-06-23 18:55:00",
318          "actual": true,
319          "is_additional_event": false,
320          "type": "land",
321          "transport_type": "TRUCK",
322          "vessel": null,
323          "voyage": null
324        },
325        {
326          "order_id": 3,
327          "location": 1,
328          "facility": 1,
329          "description": "Loaded on board",
330          "event_type": "EQUIPMENT",
331          "event_code": "LOAD",
332          "status": "CLL",
333          "date": "2023-07-01 20:11:00",
334          "actual": true,
335          "is_additional_event": false,
336          "type": "sea",
337          "transport_type": "VESSEL",
338          "vessel": 1,
339          "voyage": "0WCFBS1MA"
340        },
341        {
342          "order_id": 4,
343          "location": 1,
344          "facility": 1,
345          "description": "Vessel Departure",
346          "event_type": "TRANSPORT",
347          "event_code": "DEPA",
348          "status": "VDL",
349          "date": "2023-07-02 09:56:00",
350          "actual": true,
351          "is_additional_event": false,
352          "type": "sea",
353          "transport_type": "VESSEL",
354          "vessel": 1,
355          "voyage": "0WCFBS1MA"
356        },
357        {
358          "order_id": 5,
359          "location": 2,
360          "facility": 2,
361          "description": "Vessel Arrival",
362          "event_type": "TRANSPORT",
363          "event_code": "ARRI",
364          "status": "VAD",
365          "date": "2023-08-03 08:25:00",
366          "actual": true,
367          "is_additional_event": false,
368          "type": "sea",
369          "transport_type": "VESSEL",
370          "vessel": 1,
371          "voyage": "0WCFCN1MA"
372        },
373        {
374          "order_id": 6,
375          "location": 2,
376          "facility": 2,
377          "description": "Discharged",
378          "event_type": "EQUIPMENT",
379          "event_code": "DISC",
380          "status": "CDD",
381          "date": "2023-08-03 20:37:00",
382          "actual": true,
383          "is_additional_event": false,
384          "type": "sea",
385          "transport_type": "VESSEL",
386          "vessel": 1,
387          "voyage": "0WCFCN1MA"
388        }
389      ]
390    }
391  }
392}

Tracking by B/L

[ deprecated ]

get/reference

Get tracking information by Bill of Lading or Booking number. This operation has been marked as deprecated. Use GET /tracking

Headers

Content-Typeapplication/json

Query Parameters
  • api_keyREQUIREDstring

    Your api key. If you do not have an api key - contact us to purchase a subscription.

  • numberREQUIREDstring

    Bill of lading or booking number

  • typeOptionalstring

    Type of shipment number

    CT - Container number

    BL - Bill of lading number

    BK - Booking number

    If this parameter will be empty or not presented at all in the query, we will try to determine the type of shipment number.

    Allowed values:CTBLBK

  • sealineOptionalstring

    Standard Carrier Alpha Code (SCAC). A list of supported lines can be obtained from the following API - see GET /info/sealines

    If this parameter is empty or equal to auto or not represented at all in the query, we will try to determine the shipping line automatically.

    Default:auto

  • force_updateOptionalboolean

    Obtaining data directly from the shipping line or from a cache with minimal retention time. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

  • routeOptionalboolean

    If you need detailed route data, then set this parameter to true. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

  • aisOptionalboolean

    If you need AIS data by vessel - set this parameter to true. This parameter is taken into account only when the "route" parameter in the query parameters is true. If this parameter is set to true, the execution time of the request may be longer!

    Default:false

Response example
1{
2  "status": "success",
3  "message": "OK",
4  "data": {
5    "metadata": {
6      "type": "BL",
7      "number": "ANT1671837",
8      "sealine": "CMDU",
9      "sealine_name": "CMA CGM",
10      "status": "IN_TRANSIT",
11      "updated_at": "2023-08-04 14:52:31",
12      "cache_expires": "2023-08-04 20:52:31",
13      "api_calls": {
14        "total": null,
15        "used": null,
16        "remaining": null
17      },
18      "unique_shipments": {
19        "total": 0,
20        "used": 0,
21        "remaining": 0
22      }
23    },
24    "locations": [
25      {
26        "id": 1,
27        "name": "Antwerp",
28        "state": "Flanders",
29        "country": "Belgium",
30        "country_code": "BE",
31        "locode": "BEANR",
32        "lat": 51.22047,
33        "lng": 4.40026,
34        "timezone": "Europe/Brussels"
35      },
36      {
37        "id": 2,
38        "name": "San Antonio",
39        "state": "Region de Valparaiso",
40        "country": "Chile",
41        "country_code": "CL",
42        "locode": "CLSAI",
43        "lat": -33.59473,
44        "lng": -71.60746,
45        "timezone": "America/Santiago"
46      }
47    ],
48    "facilities": [
49      {
50        "id": 1,
51        "name": "ANTWERP GATEWAY TERMINAL (K1700-K1710)",
52        "country_code": "BE",
53        "locode": "BEANR",
54        "bic_code": null,
55        "smdg_code": "1700",
56        "lat": 51.291944,
57        "lng": 4.265556
58      },
59      {
60        "id": 2,
61        "name": "PUERTO CENTRAL SAN ANTONIO",
62        "country_code": "CL",
63        "locode": "CLSAI",
64        "bic_code": null,
65        "smdg_code": "PCE",
66        "lat": -33.591667,
67        "lng": -71.616667
68      }
69    ],
70    "route": {
71      "prepol": {
72        "location": 1,
73        "date": "2023-06-22 07:12:00",
74        "actual": true
75      },
76      "pol": {
77        "location": 1,
78        "date": "2023-06-24 04:58:00",
79        "actual": true
80      },
81      "pod": {
82        "location": 2,
83        "date": "2023-08-03 08:25:00",
84        "actual": true,
85        "predictive_eta": null
86      },
87      "postpod": {
88        "location": null,
89        "date": null,
90        "actual": null
91      }
92    },
93    "vessels": [
94      {
95        "id": 1,
96        "name": "CMA CGM JACQUES JOSEPH",
97        "imo": 9729104,
98        "call_sign": "9HA4667",
99        "mmsi": 248473000,
100        "flag": "MT"
101      }
102    ],
103    "containers": [
104      {
105        "number": "SEKU9262561",
106        "iso_code": "45R1",
107        "status": "IN_TRANSIT",
108        "events": [
109          {
110            "order_id": 1,
111            "location": 1,
112            "facility": null,
113            "description": "Empty to shipper",
114            "event_type": "EQUIPMENT",
115            "event_code": "GTOT",
116            "status": "CEP",
117            "date": "2023-06-22 07:11:00",
118            "actual": true,
119            "is_additional_event": false,
120            "type": "land",
121            "transport_type": "TRUCK",
122            "vessel": null,
123            "voyage": null
124          },
125          {
126            "order_id": 2,
127            "location": 1,
128            "facility": 1,
129            "description": "Ready to be loaded",
130            "event_type": "EQUIPMENT",
131            "event_code": "GTIN",
132            "status": "CGI",
133            "date": "2023-06-23 18:55:00",
134            "actual": true,
135            "is_additional_event": false,
136            "type": "land",
137            "transport_type": "TRUCK",
138            "vessel": null,
139            "voyage": null
140          },
141          {
142            "order_id": 3,
143            "location": 1,
144            "facility": 1,
145            "description": "Loaded on board",
146            "event_type": "EQUIPMENT",
147            "event_code": "LOAD",
148            "status": "CLL",
149            "date": "2023-07-01 20:11:00",
150            "actual": true,
151            "is_additional_event": false,
152            "type": "sea",
153            "transport_type": "VESSEL",
154            "vessel": 1,
155            "voyage": "0WCFBS1MA"
156          },
157          {
158            "order_id": 4,
159            "location": 1,
160            "facility": 1,
161            "description": "Vessel Departure",
162            "event_type": "TRANSPORT",
163            "event_code": "DEPA",
164            "status": "VDL",
165            "date": "2023-07-02 09:56:00",
166            "actual": true,
167            "is_additional_event": false,
168            "type": "sea",
169            "transport_type": "VESSEL",
170            "vessel": 1,
171            "voyage": "0WCFBS1MA"
172          },
173          {
174            "order_id": 5,
175            "location": 2,
176            "facility": 2,
177            "description": "Vessel Arrival",
178            "event_type": "TRANSPORT",
179            "event_code": "ARRI",
180            "status": "VAD",
181            "date": "2023-08-03 08:25:00",
182            "actual": true,
183            "is_additional_event": false,
184            "type": "sea",
185            "transport_type": "VESSEL",
186            "vessel": 1,
187            "voyage": "0WCFCN1MA"
188          },
189          {
190            "order_id": 6,
191            "location": 2,
192            "facility": 2,
193            "description": "Discharged",
194            "event_type": "EQUIPMENT",
195            "event_code": "DISC",
196            "status": "CDD",
197            "date": "2023-08-03 20:37:00",
198            "actual": true,
199            "is_additional_event": false,
200            "type": "sea",
201            "transport_type": "VESSEL",
202            "vessel": 1,
203            "voyage": "0WCFCN1MA"
204          }
205        ]
206      },
207      {
208        "number": "TXGU9004469",
209        "iso_code": "45R1",
210        "status": "IN_TRANSIT",
211        "events": [
212          {
213            "order_id": 1,
214            "location": 1,
215            "facility": null,
216            "description": "Empty to shipper",
217            "event_type": "EQUIPMENT",
218            "event_code": "GTOT",
219            "status": "CEP",
220            "date": "2023-06-22 07:12:00",
221            "actual": true,
222            "is_additional_event": false,
223            "type": "land",
224            "transport_type": "TRUCK",
225            "vessel": null,
226            "voyage": null
227          },
228          {
229            "order_id": 2,
230            "location": 1,
231            "facility": 1,
232            "description": "Ready to be loaded",
233            "event_type": "EQUIPMENT",
234            "event_code": "GTIN",
235            "status": "CGI",
236            "date": "2023-06-24 04:58:00",
237            "actual": true,
238            "is_additional_event": false,
239            "type": "land",
240            "transport_type": "TRUCK",
241            "vessel": null,
242            "voyage": null
243          },
244          {
245            "order_id": 3,
246            "location": 1,
247            "facility": 1,
248            "description": "Loaded on board",
249            "event_type": "EQUIPMENT",
250            "event_code": "LOAD",
251            "status": "CLL",
252            "date": "2023-07-01 20:20:00",
253            "actual": true,
254            "is_additional_event": false,
255            "type": "sea",
256            "transport_type": "VESSEL",
257            "vessel": 1,
258            "voyage": "0WCFBS1MA"
259          },
260          {
261            "order_id": 4,
262            "location": 1,
263            "facility": 1,
264            "description": "Vessel Departure",
265            "event_type": "TRANSPORT",
266            "event_code": "DEPA",
267            "status": "VDL",
268            "date": "2023-07-02 09:56:00",
269            "actual": true,
270            "is_additional_event": false,
271            "type": "sea",
272            "transport_type": "VESSEL",
273            "vessel": 1,
274            "voyage": "0WCFBS1MA"
275          },
276          {
277            "order_id": 5,
278            "location": 2,
279            "facility": 2,
280            "description": "Vessel Arrival",
281            "event_type": "TRANSPORT",
282            "event_code": "ARRI",
283            "status": "VAD",
284            "date": "2023-08-03 08:25:00",
285            "actual": true,
286            "is_additional_event": false,
287            "type": "sea",
288            "transport_type": "VESSEL",
289            "vessel": 1,
290            "voyage": "0WCFCN1MA"
291          },
292          {
293            "order_id": 6,
294            "location": 2,
295            "facility": 2,
296            "description": "Discharged",
297            "event_type": "EQUIPMENT",
298            "event_code": "DISC",
299            "status": "CDD",
300            "date": "2023-08-03 21:02:00",
301            "actual": true,
302            "is_additional_event": false,
303            "type": "sea",
304            "transport_type": "VESSEL",
305            "vessel": 1,
306            "voyage": "0WCFCN1MA"
307          }
308        ]
309      }
310    ],
311    "route_data": {
312      "route": [
313        {
314          "path": [
315            [
316              51.22047,
317              4.400260000000003
318            ],
319            [
320              51.34122410356018,
321              4.349611577822486
322            ],
323            [
324              51.90474325350768,
325              4.113252274327465
326            ],
327            [
328              52.02549735706786,
329              4.062603852149948
330            ],
331            [
332              52.020467886132245,
333              4.028116051448592
334            ],
335            [
336              51.996997021766035,
337              3.867172981508844
338            ],
339            [
340              51.99196755083042,
341              3.8326851808074593
342            ],
343            [
344              51.65235156820585,
345              2.9667782036863457
346            ],
347            [
348              50.067476982624555,
349              -1.0741210228788702
350            ],
351            [
352              49.727861,
353              -1.9400280000000123
354            ],
355            [
356              49.54469854999999,
357              -2.366040450000014
358            ],
359            [
360              48.689940449999995,
361              -4.354098550000003
362            ],
363            [
364              48.506778,
365              -4.780111000000005
366            ],
367            [
368              46.89650295,
369              -7.833906850000005
370            ],
371            [
372              39.38188605,
373              -22.084954149999987
374            ],
375            [
376              37.771611,
377              -25.138750000000016
378            ],
379            [
380              33.54834435,
381              -33.31158744999999
382            ],
383            [
384              13.839766650000001,
385              -71.45149555
386            ],
387            [
388              9.6165,
389              -79.624333
390            ],
391            [
392              9.57897645,
393              -79.66644355
394            ],
395            [
396              9.40386655,
397              -79.86295944999999
398            ],
399            [
400              9.366343,
401              -79.90507
402            ],
403            [
404              9.3029338,
405              -79.85119885
406            ],
407            [
408              9.0070242,
409              -79.59980015
410            ],
411            [
412              8.943615,
413              -79.545929
414            ],
415            [
416              7.44394365,
417              -79.75072714999999
418            ],
419            [
420              0.44547734999999977,
421              -80.70645185
422            ],
423            [
424              -1.054194,
425              -80.91125
426            ],
427            [
428              -1.5369441,
429              -80.96287504999998
430            ],
431            [
432              -3.7897779000000003,
433              -81.20379194999998
434            ],
435            [
436              -4.272528,
437              -81.255417
438            ],
439            [
440              -4.52852385,
441              -81.23992529999998
442            ],
443            [
444              -5.72317115,
445              -81.16763069999999
446            ],
447            [
448              -5.979167,
449              -81.152139
450            ],
451            [
452              -10.126166900000001,
453              -79.72213905
454            ],
455            [
456              -29.4788331,
457              -73.04880595
458            ],
459            [
460              -33.625833,
461              -71.618806
462            ],
463            [
464              -33.62122932095881,
465              -71.61895928581441
466            ],
467            [
468              -33.59974548543325,
469              -71.61967461961495
470            ],
471            [
472              -33.595141806392064,
473              -71.61982790542936
474            ],
475            [
476              -33.595080035433256,
477              -71.61797271961495
478            ],
479            [
480              -33.59479177095881,
481              -71.60931518581441
482            ],
483            [
484              -33.59473,
485              -71.60746
486            ]
487          ],
488          "type": "SEA"
489        }
490      ],
491      "pin": [
492        -33.59473,
493        -71.60746
494      ]
495    }
496  }
497}

Route information

get/route

Route information

Headers

Content-Typeapplication/json

Query Parameters
  • api_keyREQUIREDstring

    Your api key. If you do not have an api key - contact us to purchase a subscription.

  • numberREQUIREDstring

    Container number, Bill of Lading or Booking number.

  • typeREQUIREDstring

    Type of shipment number

    CT - Container number

    BL - Bill of lading number

    BK - Booking number

    Allowed values:CTBLBK

  • sealineREQUIREDstring

    Standard Carrier Alpha Code (SCAC). A list of supported lines can be obtained from the following API - see GET /info/sealines

Response example
1{
2  "status": "success",
3  "message": "OK",
4  "data": {
5    "route": [
6      {
7        "path": [
8          [
9            24.47979,
10            118.08186999999998
11          ],
12          [
13            24.49113405,
14            118.16722284999997
15          ],
16          [
17            24.54407295,
18            118.56553615000001
19          ],
20          [
21            24.555417,
22            118.650889
23          ],
24          [
25            24.667171049999997,
26            119.08913065000002
27          ],
28          [
29            25.188689949999997,
30            121.13425834999998
31          ],
32          [
33            25.300444,
34            121.57249999999999
35          ],
36          [
37            22.586223249999996,
38            145.20312079999997
39          ],
40          [
41            9.919859749999999,
42            -104.5206488
43          ],
44          [
45            7.205639,
46            -80.89002800000003
47          ],
48          [
49            7.210768099999999,
50            -80.82246965000002
51          ],
52          [
53            7.2347039,
54            -80.50719735000001
55          ],
56          [
57            7.239833,
58            -80.439639
59          ],
60          [
61            7.28132885,
62            -80.37256395000003
63          ],
64          [
65            7.47497615,
66            -80.05954705000005
67          ],
68          [
69            7.516472,
70            -79.99247200000002
71          ],
72          [
73            7.73054345,
74            -79.92549055
75          ],
76          [
77            8.729543549999999,
78            -79.61291045000002
79          ],
80          [
81            8.943615,
82            -79.545929
83          ],
84          [
85            9.0070242,
86            -79.59980015000002
87          ],
88          [
89            9.3029338,
90            -79.85119885
91          ],
92          [
93            9.366343,
94            -79.90507000000002
95          ],
96          [
97            10.99826245,
98            -79.04075110000002
99          ],
100          [
101            18.61388655,
102            -75.0072629
103          ],
104          [
105            20.245806,
106            -74.142944
107          ],
108          [
109            21.998333337490987,
110            -75.16153650059721
111          ],
112          [
113            30.176794245782254,
114            -79.91496817005077
115          ],
116          [
117            31.92932158327324,
118            -80.93356067064792
119          ],
120          [
121            32.08354,
122            -81.09983
123          ]
124        ],
125        "type": "SEA"
126      },
127      {
128        "path": [
129          [
130            32.083221,
131            -81.099869
132          ],
133          [
134            32.511677,
135            -83.064117
136          ],
137          [
138            32.545055,
139            -83.159081
140          ],
141          [
142            32.574947,
143            -83.244308
144          ],
145          [
146            32.61055,
147            -83.338669
148          ],
149          [
150            32.651413,
151            -83.427612
152          ],
153          [
154            32.700237,
155            -83.507416
156          ],
157          [
158            32.775661,
159            -83.557938
160          ],
161          [
162            32.840862,
163            -83.620949
164          ],
165          [
166            32.776787,
167            -83.685692
168          ],
169          [
170            32.701237,
171            -83.735214
172          ],
173          [
174            32.65374,
175            -83.759544
176          ]
177        ],
178        "type": "LAND"
179      }
180    ],
181    "pin": [
182      18.801004244953855,
183      178.15809506036499
184    ],
185    "ais": {
186      "status": "OK",
187      "data": {
188        "last_event": {
189          "description": "Vessel departed",
190          "date": "2023-06-01 14:15:00",
191          "voyage": "029E"
192        },
193        "discharge_port": {
194          "name": "Savannah",
195          "country_code": "US",
196          "code": "SAV",
197          "date": "2023-07-13 19:00:00",
198          "date_label": "ETA"
199        },
200        "vessel": {
201          "name": "YM WIDTH",
202          "imo": 9708447,
203          "call_sign": "VRPE5",
204          "mmsi": 477129300,
205          "flag": "HK"
206        },
207        "last_vessel_position": {
208          "lat": 6.026275,
209          "lng": 95.04732,
210          "updated_at": "2023-06-14 13:06:55"
211        },
212        "departure_port": {
213          "country_code": "SG",
214          "code": "SIN",
215          "date": "2023-06-13 13:09:00",
216          "date_label": "ATD"
217        },
218        "arrival_port": {
219          "country_code": "EG",
220          "code": "SUZ",
221          "date": "2023-06-24 20:00:00",
222          "date_label": "ETA"
223        },
224        "updated_at": "2023-06-14 15:49:22"
225      }
226    }
227  }
228}

Shipping lines info

get/info/sealines

Data about the shipping lines we support

Headers

Content-Typeapplication/json

Response example
1{
2  "status": "success",
3  "message": "OK",
4  "data": [
5    {
6      "name": "Mediterranean Shipping Company (MSC)",
7      "active": true,
8      "active_types": {
9        "ct": true,
10        "bl": true,
11        "bk": true
12      },
13      "maintenance": false,
14      "scac_codes": [
15        "MSCU",
16        "MEDU"
17      ],
18      "prefixes": [
19        "MSC",
20        "MSD",
21        "MSM",
22        "MSB",
23        "MSG",
24        "MAD",
25        "MSP",
26        "MSZ",
27        "GTI",
28        "MED",
29        "MSY",
30        "MST",
31        "MSN",
32        "MSV"
33      ]
34    },
35    {
36      "name": "ZIM",
37      "active": true,
38      "active_types": {
39        "ct": true,
40        "bl": true,
41        "bk": true
42      },
43      "maintenance": false,
44      "scac_codes": [
45        "ZIMU"
46      ],
47      "prefixes": [
48        "ZCL",
49        "ZCS",
50        "ZIM",
51        "ZMO",
52        "ZWF"
53      ]
54    }
55  ]
56}

Historical data

get/history

Historical shipping data

Headers

Content-Typeapplication/json

Query Parameters
  • api_keyREQUIREDstring

    Your api key. If you do not have an api key - contact us to purchase a subscription.

  • numberREQUIREDstring

    Container number, Bill of Lading or Booking number.

  • typeREQUIREDstring

    Type of shipment number

    CT - Container number

    BL - Bill of lading number

    BK - Booking number

    Allowed values:CTBLBK

  • sealineOptionalstring

    Standard Carrier Alpha Code (SCAC). A list of supported lines can be obtained from the following API - see GET /info/sealines

    If this parameter is empty or equal to auto or not represented at all in the query, we will try to determine the shipping line automatically.

    Default:auto

Response example
1{
2  "status": "success",
3  "message": "OK",
4  "data": {
5    "metadata": {
6      "type": "CT",
7      "number": "MSKU7117653",
8      "sealine": "",
9      "sealine_name": null,
10      "status": "UNKNOWN",
11      "updated_at": "2023-06-15 12:00:23",
12      "api_calls": {
13        "total": null,
14        "used": null,
15        "remaining": null
16      },
17      "unique_shipments": {
18        "total": 0,
19        "used": 0,
20        "remaining": 0
21      }
22    },
23    "requests": [
24      {
25        "date": "2021-07-25 10:58:04",
26        "sealine": "maeu",
27        "id": 61118083
28      },
29      {
30        "date": "2021-08-15 19:15:59",
31        "sealine": "maeu",
32        "id": 67771922
33      },
34      {
35        "date": "2022-02-03 06:23:53",
36        "sealine": "maeu",
37        "id": 134036490
38      },
39      {
40        "date": "2022-05-24 12:34:54",
41        "sealine": "maeu",
42        "id": 182782146
43      },
44      {
45        "date": "2022-06-22 09:08:02",
46        "sealine": "maeu",
47        "id": 196885782
48      },
49      {
50        "date": "2022-10-12 07:31:10",
51        "sealine": "maeu",
52        "id": 260377336
53      },
54      {
55        "date": "2023-02-03 05:28:37",
56        "sealine": "maeu",
57        "id": 306555693
58      },
59      {
60        "date": "2023-02-07 09:54:26",
61        "sealine": "maeu",
62        "id": 308285366
63      },
64      {
65        "date": "2023-05-22 07:25:51",
66        "sealine": "maeu",
67        "id": 356065796
68      },
69      {
70        "date": "2023-06-15 10:30:06",
71        "sealine": "maeu",
72        "id": 366830221
73      }
74    ]
75  }
76}

Historical data by id

get/history?id={id}

Historical shipping data by id

Headers

Content-Typeapplication/json

Path Parameters
  • idREQUIREDinteger

    Unique request ID. Use GET /history to get a list of request id for the required shipping

Query Parameters
  • api_keyREQUIREDstring

    Your api key. If you do not have an api key - contact us to purchase a subscription.

  • numberREQUIREDstring

    Container number, Bill of Lading or Booking number.

  • typeREQUIREDstring

    Type of shipment number

    CT - Container number

    BL - Bill of lading number

    BK - Booking number

    Allowed values:CTBLBK

  • sealineOptionalstring

    Standard Carrier Alpha Code (SCAC). A list of supported lines can be obtained from the following API - see GET /info/sealines

    If this parameter is empty or equal to auto or not represented at all in the query, we will try to determine the shipping line automatically.

    Default:auto

Response example
1{
2  "status": "success",
3  "message": "OK",
4  "data": {
5    "metadata": {
6      "type": "CT",
7      "number": "MSKU7117653",
8      "sealine": "MAEU",
9      "sealine_name": "Maersk",
10      "status": "UNKNOWN",
11      "updated_at": "2021-08-01 14:13:44",
12      "api_calls": {
13        "total": null,
14        "used": null,
15        "remaining": null
16      },
17      "unique_shipments": {
18        "total": 0,
19        "used": 0,
20        "remaining": 0
21      }
22    },
23    "locations": [
24      {
25        "id": 1,
26        "name": "Ravenna",
27        "state": "Emilia-Romagna",
28        "country": "Italy",
29        "country_code": "IT",
30        "locode": "ITRAN",
31        "lat": 44.41344,
32        "lng": 12.20121
33      },
34      {
35        "id": 2,
36        "name": "Trieste",
37        "state": "Friuli Venezia Giulia",
38        "country": "Italy",
39        "country_code": "IT",
40        "locode": null,
41        "lat": 45.64953,
42        "lng": 13.77678
43      },
44      {
45        "id": 3,
46        "name": "Tianjin Xingang",
47        "state": "Tianjin Shi",
48        "country": "China",
49        "country_code": "CN",
50        "locode": "CNTXG",
51        "lat": 39.14222,
52        "lng": 117.17667
53      }
54    ],
55    "route": {
56      "prepol": {
57        "location": 3,
58        "date": "2021-06-19 16:01:00",
59        "actual": true
60      },
61      "pol": {
62        "location": 3,
63        "date": "2021-06-22 18:00:00",
64        "actual": true
65      },
66      "pod": {
67        "location": null,
68        "date": "2021-08-17 19:00:00",
69        "actual": false,
70        "predictive_eta": null
71      },
72      "postpod": {
73        "location": 1,
74        "date": null,
75        "actual": null
76      }
77    },
78    "vessels": [
79      {
80        "id": 1,
81        "name": "MAERSK HONG KONG",
82        "imo": 9784257,
83        "call_sign": "9V5392",
84        "mmsi": 563017800,
85        "flag": "SG"
86      },
87      {
88        "id": 2,
89        "name": "BF PHILIPP",
90        "imo": 9123324,
91        "call_sign": "V2HF2",
92        "mmsi": 304688000,
93        "flag": "AG"
94      }
95    ],
96    "containers": [
97      {
98        "number": "MSKU7117653",
99        "iso_code": "22G1",
100        "status": "UNKNOWN",
101        "events": [
102          {
103            "location": 3,
104            "description": "Gate out Empty",
105            "status": "CEP",
106            "date": "2021-06-19 16:01:00+00",
107            "actual": true,
108            "type": "land",
109            "vessel": null,
110            "voyage": null
111          },
112          {
113            "location": 3,
114            "description": "Gate in",
115            "status": "CGI",
116            "date": "2021-06-22 18:00:00+00",
117            "actual": true,
118            "type": "land",
119            "vessel": null,
120            "voyage": null
121          },
122          {
123            "location": 3,
124            "description": "Load",
125            "status": "CLL",
126            "date": "2021-06-24 13:26:00+00",
127            "actual": true,
128            "type": "sea",
129            "vessel": 1,
130            "voyage": "125W"
131          },
132          {
133            "location": 2,
134            "description": "Discharge",
135            "status": "CDT",
136            "date": "2021-08-11 19:00:00+00",
137            "actual": false,
138            "type": "sea",
139            "vessel": 1,
140            "voyage": "125W"
141          },
142          {
143            "location": 2,
144            "description": "Load",
145            "status": "CLT",
146            "date": "2021-08-28 07:00:00+00",
147            "actual": false,
148            "type": "sea",
149            "vessel": 2,
150            "voyage": "2165"
151          },
152          {
153            "location": 1,
154            "description": "Discharge",
155            "status": "CDT",
156            "date": "2021-08-28 07:00:06+00",
157            "actual": false,
158            "type": "sea",
159            "vessel": 2,
160            "voyage": "2165"
161          },
162          {
163            "location": 1,
164            "description": "Gate out",
165            "status": "LTS",
166            "date": "2021-08-28 07:00:13+00",
167            "actual": false,
168            "type": "land",
169            "vessel": null,
170            "voyage": null
171          }
172        ]
173      }
174    ]
175  }
176}