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": "242350920",
8      "sealine": "MAEU",
9      "sealine_name": "Maersk",
10      "status": "IN_TRANSIT",
11      "is_status_from_sealine": true,
12      "updated_at": "2024-09-05 13:28:57",
13      "cache_expires": "2024-09-06 13:28:57",
14      "api_calls": {
15        "total": 100,
16        "used": 1,
17        "remaining": 99
18      },
19      "unique_shipments": {
20        "total": 0,
21        "used": 0,
22        "remaining": 0
23      }
24    },
25    "locations": [
26      {
27        "id": 1,
28        "name": "Port Said East",
29        "state": "As Suways",
30        "country": "Egypt",
31        "country_code": "EG",
32        "locode": "EGPSE",
33        "lat": 31.216666666667,
34        "lng": 32.35,
35        "timezone": "Africa/Cairo"
36      },
37      {
38        "id": 2,
39        "name": "Chornomors'k",
40        "state": "Odeska Oblast",
41        "country": "Ukraine",
42        "country_code": "UA",
43        "locode": "UAILK",
44        "lat": 46.29914,
45        "lng": 30.65529,
46        "timezone": "Europe/Simferopol"
47      },
48      {
49        "id": 3,
50        "name": "Shanghai",
51        "state": "Shanghai Shi",
52        "country": "China",
53        "country_code": "CN",
54        "locode": "CNSHG",
55        "lat": 31.366365,
56        "lng": 121.61475,
57        "timezone": "Asia/Shanghai"
58      },
59      {
60        "id": 4,
61        "name": "Yokohama",
62        "state": "Kanagawa",
63        "country": "Japan",
64        "country_code": "JP",
65        "locode": "JPYOK",
66        "lat": 35.43333,
67        "lng": 139.65,
68        "timezone": "Asia/Tokyo"
69      },
70      {
71        "id": 5,
72        "name": "Constanta",
73        "state": "Constanta",
74        "country": "Romania",
75        "country_code": "RO",
76        "locode": "ROCND",
77        "lat": 44.18073,
78        "lng": 28.63432,
79        "timezone": "Europe/Bucharest"
80      }
81    ],
82    "facilities": [
83      {
84        "id": 1,
85        "name": "EAST PORT SAID TERMINAL",
86        "country_code": "EG",
87        "locode": null,
88        "bic_code": null,
89        "smdg_code": null,
90        "lat": null,
91        "lng": null
92      },
93      {
94        "id": 2,
95        "name": "YANGSHAN SGH GUANDONG TERMINAL",
96        "country_code": "CN",
97        "locode": null,
98        "bic_code": null,
99        "smdg_code": null,
100        "lat": null,
101        "lng": null
102      },
103      {
104        "id": 3,
105        "name": "Maersk Yokohama terminal",
106        "country_code": "JP",
107        "locode": null,
108        "bic_code": null,
109        "smdg_code": null,
110        "lat": null,
111        "lng": null
112      },
113      {
114        "id": 4,
115        "name": "CSCT Terminal",
116        "country_code": "RO",
117        "locode": null,
118        "bic_code": null,
119        "smdg_code": null,
120        "lat": null,
121        "lng": null
122      },
123      {
124        "id": 5,
125        "name": "Fishing Port of Ilyichevsk",
126        "country_code": "UA",
127        "locode": null,
128        "bic_code": null,
129        "smdg_code": null,
130        "lat": null,
131        "lng": null
132      }
133    ],
134    "route": {
135      "prepol": {
136        "location": 4,
137        "date": "2024-07-24 14:44:00",
138        "actual": true
139      },
140      "pol": {
141        "location": 4,
142        "date": "2024-07-30 23:55:00",
143        "actual": true
144      },
145      "pod": {
146        "location": 5,
147        "date": "2024-09-27 08:00:00",
148        "actual": false,
149        "predictive_eta": null
150      },
151      "postpod": {
152        "location": 2,
153        "date": "2024-10-01 22:00:00",
154        "actual": false
155      }
156    },
157    "vessels": [
158      {
159        "id": 1,
160        "name": "CAPE MALE",
161        "imo": 9440150,
162        "call_sign": "V7RU3",
163        "mmsi": 538003580,
164        "flag": "MH"
165      },
166      {
167        "id": 2,
168        "name": "MONACO",
169        "imo": 9314961,
170        "call_sign": "A8IF2",
171        "mmsi": 636090967,
172        "flag": "LR"
173      },
174      {
175        "id": 3,
176        "name": "MAERSK CAMBRIDGE",
177        "imo": 9924182,
178        "call_sign": "5LDM2",
179        "mmsi": 636021337,
180        "flag": "LR"
181      }
182    ],
183    "containers": [
184      {
185        "number": "CAAU6505323",
186        "iso_code": "45G1",
187        "size_type": "40' High Cube Dry",
188        "status": "IN_TRANSIT",
189        "is_status_from_sealine": true,
190        "events": [
191          {
192            "order_id": 1,
193            "location": 4,
194            "facility": 3,
195            "description": "Gate out",
196            "event_type": "EQUIPMENT",
197            "event_code": "GTOT",
198            "status": "CPS",
199            "date": "2024-07-23 13:47:00",
200            "actual": true,
201            "is_additional_event": false,
202            "type": "land",
203            "transport_type": null,
204            "vessel": null,
205            "voyage": null
206          },
207          {
208            "order_id": 2,
209            "location": 4,
210            "facility": 3,
211            "description": "Gate in",
212            "event_type": "EQUIPMENT",
213            "event_code": "GTIN",
214            "status": "CEP",
215            "date": "2024-07-24 14:44:00",
216            "actual": true,
217            "is_additional_event": false,
218            "type": "land",
219            "transport_type": null,
220            "vessel": null,
221            "voyage": null
222          },
223          {
224            "order_id": 3,
225            "location": 4,
226            "facility": 3,
227            "description": "Load",
228            "event_type": "EQUIPMENT",
229            "event_code": "LOAD",
230            "status": "CLL",
231            "date": "2024-07-30 16:31:00",
232            "actual": true,
233            "is_additional_event": false,
234            "type": "sea",
235            "transport_type": null,
236            "vessel": 2,
237            "voyage": "431S"
238          },
239          {
240            "order_id": 4,
241            "location": 4,
242            "facility": 3,
243            "description": "Vessel departure",
244            "event_type": "TRANSPORT",
245            "event_code": "DEPA",
246            "status": "VDL",
247            "date": "2024-07-30 23:55:00",
248            "actual": true,
249            "is_additional_event": false,
250            "type": "sea",
251            "transport_type": "VESSEL",
252            "vessel": 2,
253            "voyage": "431S"
254          },
255          {
256            "order_id": 5,
257            "location": 3,
258            "facility": 2,
259            "description": "Vessel arrival",
260            "event_type": "TRANSPORT",
261            "event_code": "ARRI",
262            "status": "VAT",
263            "date": "2024-08-05 22:50:00",
264            "actual": true,
265            "is_additional_event": false,
266            "type": "sea",
267            "transport_type": "VESSEL",
268            "vessel": 2,
269            "voyage": "431S"
270          },
271          {
272            "order_id": 6,
273            "location": 3,
274            "facility": 2,
275            "description": "Discharge",
276            "event_type": "EQUIPMENT",
277            "event_code": "DISC",
278            "status": "CDT",
279            "date": "2024-08-06 03:13:00",
280            "actual": true,
281            "is_additional_event": false,
282            "type": "sea",
283            "transport_type": null,
284            "vessel": 2,
285            "voyage": "431S"
286          },
287          {
288            "order_id": 7,
289            "location": 3,
290            "facility": 2,
291            "description": "Load",
292            "event_type": "EQUIPMENT",
293            "event_code": "LOAD",
294            "status": "CLT",
295            "date": "2024-08-09 01:59:00",
296            "actual": true,
297            "is_additional_event": false,
298            "type": "sea",
299            "transport_type": null,
300            "vessel": 3,
301            "voyage": "430W"
302          },
303          {
304            "order_id": 8,
305            "location": 3,
306            "facility": 2,
307            "description": "Vessel departure",
308            "event_type": "TRANSPORT",
309            "event_code": "DEPA",
310            "status": "VDT",
311            "date": "2024-08-09 15:00:00",
312            "actual": true,
313            "is_additional_event": false,
314            "type": "sea",
315            "transport_type": "VESSEL",
316            "vessel": 3,
317            "voyage": "430W"
318          },
319          {
320            "order_id": 9,
321            "location": 1,
322            "facility": 1,
323            "description": "Vessel arrival",
324            "event_type": "TRANSPORT",
325            "event_code": "ARRI",
326            "status": "VAT",
327            "date": "2024-09-17 12:00:00",
328            "actual": false,
329            "is_additional_event": false,
330            "type": "sea",
331            "transport_type": "VESSEL",
332            "vessel": 3,
333            "voyage": "430W"
334          },
335          {
336            "order_id": 10,
337            "location": 1,
338            "facility": null,
339            "description": "Vessel departure",
340            "event_type": "TRANSPORT",
341            "event_code": "DEPA",
342            "status": "VDT",
343            "date": "2024-09-21 13:00:00",
344            "actual": false,
345            "is_additional_event": false,
346            "type": "sea",
347            "transport_type": "VESSEL",
348            "vessel": 1,
349            "voyage": "438N"
350          },
351          {
352            "order_id": 11,
353            "location": 5,
354            "facility": 4,
355            "description": "Vessel arrival",
356            "event_type": "TRANSPORT",
357            "event_code": "ARRI",
358            "status": "VAD",
359            "date": "2024-09-27 08:00:00",
360            "actual": false,
361            "is_additional_event": false,
362            "type": "sea",
363            "transport_type": "VESSEL",
364            "vessel": 1,
365            "voyage": "438N"
366          },
367          {
368            "order_id": 12,
369            "location": 5,
370            "facility": null,
371            "description": "Gate out",
372            "event_type": "EQUIPMENT",
373            "event_code": "GTOT",
374            "status": "LTS",
375            "date": "2024-09-28 22:00:00",
376            "actual": false,
377            "is_additional_event": false,
378            "type": "land",
379            "transport_type": null,
380            "vessel": null,
381            "voyage": null
382          },
383          {
384            "order_id": 13,
385            "location": 2,
386            "facility": 5,
387            "description": "Gate in",
388            "event_type": "EQUIPMENT",
389            "event_code": "GTIN",
390            "status": "CDC",
391            "date": "2024-10-01 22:00:00",
392            "actual": false,
393            "is_additional_event": false,
394            "type": "land",
395            "transport_type": null,
396            "vessel": null,
397            "voyage": null
398          }
399        ]
400      }
401    ],
402    "route_data": {
403      "route": [
404        {
405          "path": [
406            [
407              35.4333,
408              139.65
409            ],
410            [
411              34.8051,
412              140.019
413            ],
414            [
415              34.7926,
416              140.0233
417            ],
418            [
419              34.782,
420              140.0206
421            ],
422            [
423              34.7732,
424              140.011
425            ],
426            [
427              34.5101,
428              139.5631
429            ],
430            [
431              34.5013,
432              139.553
433            ],
434            [
435              34.4904,
436              139.5496
437            ],
438            [
439              34.4775,
440              139.5528
441            ],
442            [
443              33.8427,
444              139.856
445            ],
446            [
447              33.8303,
448              139.8592
449            ],
450            [
451              33.8198,
452              139.8561
453            ],
454            [
455              33.8112,
456              139.8467
457            ],
458            [
459              33.4673,
460              139.2661
461            ],
462            [
463              33.4603,
464              139.2531
465            ],
466            [
467              33.4543,
468              139.2396
469            ],
470            [
471              33.4495,
472              139.2257
473            ],
474            [
475              30.8957,
476              130.7086
477            ],
478            [
479              30.8909,
480              130.688
481            ],
482            [
483              30.8886,
484              130.6672
485            ],
486            [
487              30.8889,
488              130.6462
489            ],
490            [
491              31.5336,
492              122.4785
493            ],
494            [
495              31.5383,
496              122.4596
497            ],
498            [
499              31.549,
500              122.4452
501            ],
502            [
503              31.5657,
504              122.4353
505            ],
506            [
507              31.6372,
508              122.4084
509            ],
510            [
511              31.6497,
512              122.4006
513            ],
514            [
515              31.6548,
516              122.3895
517            ],
518            [
519              31.6526,
520              122.3751
521            ],
522            [
523              31.3664,
524              121.6148
525            ]
526          ],
527          "type": "SEA",
528          "transport_type": "VESSEL"
529        },
530        {
531          "path": [
532            [
533              31.3664,
534              121.6148
535            ],
536            [
537              31.6524,
538              122.3746
539            ],
540            [
541              31.6548,
542              122.3891
543            ],
544            [
545              31.6499,
546              122.4003
547            ],
548            [
549              31.6376,
550              122.4082
551            ],
552            [
553              31.5675,
554              122.4346
555            ],
556            [
557              31.548,
558              122.444
559            ],
560            [
561              31.531,
562              122.4567
563            ],
564            [
565              31.5163,
566              122.4726
567            ],
568            [
569              30.9031,
570              123.2868
571            ],
572            [
573              30.8903,
574              123.3007
575            ],
576            [
577              30.8752,
578              123.3115
579            ],
580            [
581              30.8578,
582              123.3191
583            ],
584            [
585              30.6886,
586              123.3725
587            ],
588            [
589              30.6702,
590              123.3763
591            ],
592            [
593              30.6518,
594              123.3757
595            ],
596            [
597              30.6337,
598              123.3708
599            ],
600            [
601              30.1052,
602              123.1627
603            ],
604            [
605              30.0914,
606              123.157
607            ],
608            [
609              30.0779,
610              123.1508
611            ],
612            [
613              30.0646,
614              123.1441
615            ],
616            [
617              28.8251,
618              122.4928
619            ],
620            [
621              28.8121,
622              122.4857
623            ],
624            [
625              28.7992,
626              122.4783
627            ],
628            [
629              28.7865,
630              122.4705
631            ],
632            [
633              23.9531,
634              119.4045
635            ],
636            [
637              23.9406,
638              119.3965
639            ],
640            [
641              23.928,
642              119.3886
643            ],
644            [
645              23.9153,
646              119.3808
647            ],
648            [
649              23.5336,
650              119.1435
651            ],
652            [
653              23.5157,
654              119.133
655            ],
656            [
657              23.4974,
658              119.1235
659            ],
660            [
661              23.4785,
662              119.115
663            ],
664            [
665              8.704,
666              112.9062
667            ],
668            [
669              8.685,
670              112.8979
671            ],
672            [
673              8.6663,
674              112.889
675            ],
676            [
677              8.6479,
678              112.8796
679            ],
680            [
681              1.5884,
682              109.1108
683            ],
684            [
685              1.57,
686              109.1012
687            ],
688            [
689              1.5513,
690              109.0921
691            ],
692            [
693              1.5324,
694              109.0833
695            ],
696            [
697              -5.8096,
698              105.791
699            ],
700            [
701              -5.8208,
702              105.7842
703            ],
704            [
705              -5.8294,
706              105.775
707            ],
708            [
709              -5.8353,
710              105.7634
711            ],
712            [
713              -34.2102,
714              25.8073
715            ],
716            [
717              -34.2145,
718              25.7943
719            ],
720            [
721              -34.2182,
722              25.7811
723            ],
724            [
725              -34.2212,
726              25.7678
727            ],
728            [
729              -34.4072,
730              24.8483
731            ],
732            [
733              -34.411,
734              24.8282
735            ],
736            [
737              -34.4143,
738              24.8081
739            ],
740            [
741              -34.4172,
742              24.7879
743            ],
744            [
745              -35.0052,
746              20.1561
747            ],
748            [
749              -35.0073,
750              20.1356
751            ],
752            [
753              -35.0081,
754              20.1151
755            ],
756            [
757              -35.0077,
758              20.0945
759            ],
760            [
761              -34.9862,
762              19.6461
763            ],
764            [
765              -34.9849,
766              19.6325
767            ],
768            [
769              -34.9823,
770              19.6191
771            ],
772            [
773              -34.9783,
774              19.606
775            ],
776            [
777              -34.5435,
778              18.3853
779            ],
780            [
781              -34.5379,
782              18.3729
783            ],
784            [
785              -34.5304,
786              18.3619
787            ],
788            [
789              -34.521,
790              18.3522
791            ],
792            [
793              -12.0547,
794              -1.0276
795            ],
796            [
797              -5.317089330523271,
798              -5.558832048101181
799            ],
800            [
801              11.0969,
802              -16.5977
803            ],
804            [
805              11.1122,
806              -16.6069
807            ],
808            [
809              11.1283,
810              -16.6146
811            ],
812            [
813              11.1451,
814              -16.6207
815            ],
816            [
817              14.7406,
818              -17.7419
819            ],
820            [
821              14.7558,
822              -17.7456
823            ],
824            [
825              14.7712,
826              -17.7474
827            ],
828            [
829              14.7867,
830              -17.7472
831            ],
832            [
833              20.8333,
834              -17.3203
835            ],
836            [
837              20.849,
838              -17.319
839            ],
840            [
841              20.8646,
842              -17.3173
843            ],
844            [
845              20.8802,
846              -17.3152
847            ],
848            [
849              21.8168,
850              -17.1795
851            ],
852            [
853              21.8354,
854              -17.1761
855            ],
856            [
857              21.8536,
858              -17.1713
859            ],
860            [
861              21.8715,
862              -17.1653
863            ],
864            [
865              22.2477,
866              -17.0217
867            ],
868            [
869              22.2652,
870              -17.0145
871            ],
872            [
873              22.2824,
874              -17.0065
875            ],
876            [
877              22.2991,
878              -16.9976
879            ],
880            [
881              23.9197,
882              -16.0901
883            ],
884            [
885              23.932,
886              -16.0831
887            ],
888            [
889              23.9441,
890              -16.076
891            ],
892            [
893              23.9563,
894              -16.0688
895            ],
896            [
897              26.2623,
898              -14.6782
899            ],
900            [
901              26.2742,
902              -14.6706
903            ],
904            [
905              26.2857,
906              -14.6625
907            ],
908            [
909              26.2967,
910              -14.6538
911            ],
912            [
913              32.5313,
914              -9.5425
915            ],
916            [
917              32.5473,
918              -9.529
919            ],
920            [
921              32.5628,
922              -9.5151
923            ],
924            [
925              32.578,
926              -9.5007
927            ],
928            [
929              33.3693,
930              -8.7296
931            ],
932            [
933              33.3823,
934              -8.7167
935            ],
936            [
937              33.3951,
938              -8.7035
939            ],
940            [
941              33.4076,
942              -8.6901
943            ],
944            [
945              35.7783,
946              -6.1123
947            ],
948            [
949              35.7901,
950              -6.0983
951            ],
952            [
953              35.8005,
954              -6.0834
955            ],
956            [
957              35.8097,
958              -6.0676
959            ],
960            [
961              35.8556,
962              -5.9802
963            ],
964            [
965              35.8613,
966              -5.9674
967            ],
968            [
969              35.8655,
970              -5.9542
971            ],
972            [
973              35.8683,
974              -5.9404
975            ],
976            [
977              35.9571,
978              -5.3034
979            ],
980            [
981              35.959,
982              -5.2894
983            ],
984            [
985              35.9609,
986              -5.2753
987            ],
988            [
989              35.9627,
990              -5.2613
991            ],
992            [
993              36.9893,
994              2.7719
995            ],
996            [
997              36.9919,
998              2.7928
999            ],
1000            [
1001              36.9946,
1002              2.8136
1003            ],
1004            [
1005              36.9972,
1006              2.8345
1007            ],
1008            [
1009              37.1239,
1010              3.8505
1011            ],
1012            [
1013              37.1255,
1014              3.8641
1015            ],
1016            [
1017              37.1268,
1018              3.8778
1019            ],
1020            [
1021              37.1278,
1022              3.8914
1023            ],
1024            [
1025              37.4687,
1026              9.1513
1027            ],
1028            [
1029              37.4693,
1030              9.165
1031            ],
1032            [
1033              37.4693,
1034              9.1786
1035            ],
1036            [
1037              37.4689,
1038              9.1923
1039            ],
1040            [
1041              37.4651,
1042              9.2666
1043            ],
1044            [
1045              37.4639,
1046              9.2874
1047            ],
1048            [
1049              37.4626,
1050              9.3082
1051            ],
1052            [
1053              37.4611,
1054              9.3289
1055            ],
1056            [
1057              37.3824,
1058              10.3491
1059            ],
1060            [
1061              37.3804,
1062              10.3686
1063            ],
1064            [
1065              37.3773,
1066              10.388
1067            ],
1068            [
1069              37.3732,
1070              10.4071
1071            ],
1072            [
1073              36.9404,
1074              12.2022
1075            ],
1076            [
1077              36.9358,
1078              12.2213
1079            ],
1080            [
1081              36.931,
1082              12.2403
1083            ],
1084            [
1085              36.926,
1086              12.2594
1087            ],
1088            [
1089              31.7397,
1090              31.9184
1091            ],
1092            [
1093              31.7327,
1094              31.9377
1095            ],
1096            [
1097              31.7227,
1098              31.9553
1099            ],
1100            [
1101              31.7096,
1102              31.9712
1103            ],
1104            [
1105              31.3907,
1106              32.2975
1107            ],
1108            [
1109              31.3806,
1110              32.3057
1111            ],
1112            [
1113              31.3692,
1114              32.311
1115            ],
1116            [
1117              31.3565,
1118              32.3135
1119            ],
1120            [
1121              31.2345,
1122              32.3237
1123            ],
1124            [
1125              31.2236,
1126              32.327
1127            ],
1128            [
1129              31.2176,
1130              32.3343
1131            ],
1132            [
1133              31.2163,
1134              32.3457
1135            ],
1136            [
1137              31.2167,
1138              32.35
1139            ]
1140          ],
1141          "type": "SEA",
1142          "transport_type": "VESSEL"
1143        },
1144        {
1145          "path": [
1146            [
1147              31.2167,
1148              32.35
1149            ],
1150            [
1151              31.2163,
1152              32.3457
1153            ],
1154            [
1155              31.2176,
1156              32.3343
1157            ],
1158            [
1159              31.2237,
1160              32.327
1161            ],
1162            [
1163              31.2345,
1164              32.3237
1165            ],
1166            [
1167              31.3565,
1168              32.3135
1169            ],
1170            [
1171              31.3692,
1172              32.311
1173            ],
1174            [
1175              31.3807,
1176              32.3057
1177            ],
1178            [
1179              31.3908,
1180              32.2976
1181            ],
1182            [
1183              36.6368,
1184              26.9706
1185            ],
1186            [
1187              36.651,
1188              26.9575
1189            ],
1190            [
1191              36.6663,
1192              26.9459
1193            ],
1194            [
1195              36.6828,
1196              26.9359
1197            ],
1198            [
1199              36.6928,
1200              26.9304
1201            ],
1202            [
1203              36.7083,
1204              26.9223
1205            ],
1206            [
1207              36.724,
1208              26.9145
1209            ],
1210            [
1211              36.74,
1212              26.9073
1213            ],
1214            [
1215              38.2495,
1216              26.2453
1217            ],
1218            [
1219              38.2656,
1220              26.2383
1221            ],
1222            [
1223              38.2817,
1224              26.2315
1225            ],
1226            [
1227              38.2979,
1228              26.2247
1229            ],
1230            [
1231              38.4722,
1232              26.1529
1233            ],
1234            [
1235              38.4858,
1236              26.1471
1237            ],
1238            [
1239              38.4992,
1240              26.1409
1241            ],
1242            [
1243              38.5124,
1244              26.1344
1245            ],
1246            [
1247              38.632,
1248              26.0728
1249            ],
1250            [
1251              38.645,
1252              26.0659
1253            ],
1254            [
1255              38.6579,
1256              26.0586
1257            ],
1258            [
1259              38.6705,
1260              26.0511
1261            ],
1262            [
1263              39.1025,
1264              25.7852
1265            ],
1266            [
1267              39.1185,
1268              25.7784
1269            ],
1270            [
1271              39.1349,
1272              25.7774
1273            ],
1274            [
1275              39.1515,
1276              25.7821
1277            ],
1278            [
1279              39.9171,
1280              26.1407
1281            ],
1282            [
1283              39.9331,
1284              26.1496
1285            ],
1286            [
1287              39.9476,
1288              26.1606
1289            ],
1290            [
1291              39.9604,
1292              26.1737
1293            ],
1294            [
1295              40.1291,
1296              26.3744
1297            ],
1298            [
1299              40.142,
1300              26.3895
1301            ],
1302            [
1303              40.1553,
1304              26.4044
1305            ],
1306            [
1307              40.1689,
1308              26.419
1309            ],
1310            [
1311              40.2109,
1312              26.4632
1313            ],
1314            [
1315              40.2242,
1316              26.478
1317            ],
1318            [
1319              40.2367,
1320              26.4934
1321            ],
1322            [
1323              40.2484,
1324              26.5095
1325            ],
1326            [
1327              40.3875,
1328              26.7122
1329            ],
1330            [
1331              40.3972,
1332              26.7281
1333            ],
1334            [
1335              40.4052,
1336              26.7447
1337            ],
1338            [
1339              40.4115,
1340              26.7622
1341            ],
1342            [
1343              40.6552,
1344              27.5781
1345            ],
1346            [
1347              40.6603,
1348              27.596
1349            ],
1350            [
1351              40.665,
1352              27.6141
1353            ],
1354            [
1355              40.6693,
1356              27.6324
1357            ],
1358            [
1359              40.9304,
1360              28.8047
1361            ],
1362            [
1363              40.9339,
1364              28.8189
1365            ],
1366            [
1367              40.9383,
1368              28.8329
1369            ],
1370            [
1371              40.9434,
1372              28.8466
1373            ],
1374            [
1375              40.9939,
1376              28.9708
1377            ],
1378            [
1379              41.0007,
1380              28.9832
1381            ],
1382            [
1383              41.01,
1384              28.9932
1385            ],
1386            [
1387              41.0219,
1388              29.0008
1389            ],
1390            [
1391              41.0032,
1392              28.9918
1393            ],
1394            [
1395              41.0201,
1396              29.0014
1397            ],
1398            [
1399              41.0352,
1400              29.0132
1401            ],
1402            [
1403              41.0486,
1404              29.0272
1405            ],
1406            [
1407              41.0301,
1408              29.0047
1409            ],
1410            [
1411              41.043,
1412              29.0195
1413            ],
1414            [
1415              41.0568,
1416              29.0333
1417            ],
1418            [
1419              41.0714,
1420              29.0464
1421            ],
1422            [
1423              41.049,
1424              29.0277
1425            ],
1426            [
1427              41.0674,
1428              29.0417
1429            ],
1430            [
1431              41.0868,
1432              29.054
1433            ],
1434            [
1435              41.1073,
1436              29.0647
1437            ],
1438            [
1439              41.0863,
1440              29.055
1441            ],
1442            [
1443              41.101,
1444              29.0616
1445            ],
1446            [
1447              41.1158,
1448              29.0678
1449            ],
1450            [
1451              41.1307,
1452              29.0737
1453            ],
1454            [
1455              41.1149,
1456              29.0677
1457            ],
1458            [
1459              41.1257,
1460              29.0705
1461            ],
1462            [
1463              41.1365,
1464              29.0707
1465            ],
1466            [
1467              41.1473,
1468              29.0682
1469            ],
1470            [
1471              41.1417,
1472              29.0702
1473            ],
1474            [
1475              41.1457,
1476              29.0691
1477            ],
1478            [
1479              41.1497,
1480              29.0685
1481            ],
1482            [
1483              41.1538,
1484              29.0686
1485            ],
1486            [
1487              41.1476,
1488              29.0681
1489            ],
1490            [
1491              41.1517,
1492              29.0687
1493            ],
1494            [
1495              41.1557,
1496              29.0697
1497            ],
1498            [
1499              41.1595,
1500              29.0713
1501            ],
1502            [
1503              41.2154,
1504              29.0993
1505            ],
1506            [
1507              41.2288,
1508              29.1046
1509            ],
1510            [
1511              41.2427,
1512              29.1076
1513            ],
1514            [
1515              41.257,
1516              29.1082
1517            ],
1518            [
1519              44.0528,
1520              28.9735
1521            ],
1522            [
1523              44.0657,
1524              28.9706
1525            ],
1526            [
1527              44.0752,
1528              28.9633
1529            ],
1530            [
1531              44.0814,
1532              28.9517
1533            ],
1534            [
1535              44.1807,
1536              28.6343
1537            ]
1538          ],
1539          "type": "SEA",
1540          "transport_type": "VESSEL"
1541        },
1542        {
1543          "path": [
1544            [
1545              44.1806904,
1546              28.6337161
1547            ],
1548            [
1549              44.274323,
1550              28.5571897
1551            ],
1552            [
1553              44.7752845,
1554              28.688693
1555            ],
1556            [
1557              44.9153602,
1558              28.4801996
1559            ],
1560            [
1561              45.0251269,
1562              28.4487212
1563            ],
1564            [
1565              45.2426755,
1566              28.1467366
1567            ],
1568            [
1569              45.3414237,
1570              28.1693852
1571            ],
1572            [
1573              45.4098845,
1574              28.0428815
1575            ],
1576            [
1577              45.4665434,
1578              28.1850386
1579            ],
1580            [
1581              45.5803442,
1582              28.169117
1583            ],
1584            [
1585              46.1746466,
1586              30.0498497
1587            ],
1588            [
1589              46.1822855,
1590              30.3188324
1591            ],
1592            [
1593              46.062305,
1594              30.4509044
1595            ],
1596            [
1597              46.1450565,
1598              30.5261135
1599            ],
1600            [
1601              46.2356615,
1602              30.6078136
1603            ],
1604            [
1605              46.2988944,
1606              30.6552527
1607            ]
1608          ],
1609          "type": "LAND",
1610          "transport_type": "TRUCK"
1611        }
1612      ],
1613      "pin": [
1614        -5.317089330523271,
1615        -5.558832048101181
1616      ],
1617      "ais": {
1618        "status": "OK",
1619        "data": {
1620          "last_event": {
1621            "description": "Vessel departure",
1622            "date": "2024-08-09 15:00:00",
1623            "voyage": "430W"
1624          },
1625          "discharge_port": {
1626            "name": "Constanta",
1627            "country_code": "RO",
1628            "code": "CND",
1629            "date": "2024-09-27 08:00:00",
1630            "date_label": "ETA"
1631          },
1632          "vessel": {
1633            "name": "MAERSK CAMBRIDGE",
1634            "imo": 9924182,
1635            "call_sign": "5LDM2",
1636            "mmsi": 636021337,
1637            "flag": "LR"
1638          },
1639          "last_vessel_position": {
1640            "lat": -12.05474,
1641            "lng": -1.027637,
1642            "updated_at": "2024-09-04 08:38:35"
1643          },
1644          "departure_port": {
1645            "country_code": "SG",
1646            "code": "SIN",
1647            "date": "2024-08-17 23:31:00",
1648            "date_label": "ATD"
1649          },
1650          "arrival_port": {
1651            "country_code": "EG",
1652            "code": "PSD",
1653            "date": "2024-09-17 07:00:00",
1654            "date_label": "ETA"
1655          },
1656          "updated_at": "2024-09-05 13:33:44"
1657        }
1658      }
1659    }
1660  }
1661}

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": "CAAU6505323",
8      "sealine": "MAEU",
9      "sealine_name": "Maersk",
10      "status": "IN_TRANSIT",
11      "is_status_from_sealine": true,
12      "updated_at": "2024-09-05 13:55:23",
13      "cache_expires": "2024-09-06 13:55:23",
14      "api_calls": {
15        "total": 100,
16        "used": 1,
17        "remaining": 99
18      },
19      "unique_shipments": {
20        "total": 0,
21        "used": 0,
22        "remaining": 0
23      }
24    },
25    "locations": [
26      {
27        "id": 1,
28        "name": "Port Said East",
29        "state": "As Suways",
30        "country": "Egypt",
31        "country_code": "EG",
32        "locode": "EGPSE",
33        "lat": 31.216666666667,
34        "lng": 32.35,
35        "timezone": "Africa/Cairo"
36      },
37      {
38        "id": 2,
39        "name": "Chornomors'k",
40        "state": "Odeska Oblast",
41        "country": "Ukraine",
42        "country_code": "UA",
43        "locode": "UAILK",
44        "lat": 46.29914,
45        "lng": 30.65529,
46        "timezone": "Europe/Simferopol"
47      },
48      {
49        "id": 3,
50        "name": "Shanghai",
51        "state": "Shanghai Shi",
52        "country": "China",
53        "country_code": "CN",
54        "locode": "CNSHG",
55        "lat": 31.366365,
56        "lng": 121.61475,
57        "timezone": "Asia/Shanghai"
58      },
59      {
60        "id": 4,
61        "name": "Yokohama",
62        "state": "Kanagawa",
63        "country": "Japan",
64        "country_code": "JP",
65        "locode": "JPYOK",
66        "lat": 35.43333,
67        "lng": 139.65,
68        "timezone": "Asia/Tokyo"
69      },
70      {
71        "id": 5,
72        "name": "Constanta",
73        "state": "Constanta",
74        "country": "Romania",
75        "country_code": "RO",
76        "locode": "ROCND",
77        "lat": 44.18073,
78        "lng": 28.63432,
79        "timezone": "Europe/Bucharest"
80      }
81    ],
82    "facilities": [
83      {
84        "id": 1,
85        "name": "EAST PORT SAID TERMINAL",
86        "country_code": "EG",
87        "locode": null,
88        "bic_code": null,
89        "smdg_code": null,
90        "lat": null,
91        "lng": null
92      },
93      {
94        "id": 2,
95        "name": "YANGSHAN SGH GUANDONG TERMINAL",
96        "country_code": "CN",
97        "locode": null,
98        "bic_code": null,
99        "smdg_code": null,
100        "lat": null,
101        "lng": null
102      },
103      {
104        "id": 3,
105        "name": "Maersk Yokohama terminal",
106        "country_code": "JP",
107        "locode": null,
108        "bic_code": null,
109        "smdg_code": null,
110        "lat": null,
111        "lng": null
112      },
113      {
114        "id": 4,
115        "name": "CSCT Terminal",
116        "country_code": "RO",
117        "locode": null,
118        "bic_code": null,
119        "smdg_code": null,
120        "lat": null,
121        "lng": null
122      },
123      {
124        "id": 5,
125        "name": "Fishing Port of Ilyichevsk",
126        "country_code": "UA",
127        "locode": null,
128        "bic_code": null,
129        "smdg_code": null,
130        "lat": null,
131        "lng": null
132      }
133    ],
134    "route": {
135      "prepol": {
136        "location": 4,
137        "date": "2024-07-24 14:44:00",
138        "actual": true
139      },
140      "pol": {
141        "location": 4,
142        "date": "2024-07-30 23:55:00",
143        "actual": true
144      },
145      "pod": {
146        "location": 5,
147        "date": "2024-09-27 08:00:00",
148        "actual": false,
149        "predictive_eta": null
150      },
151      "postpod": {
152        "location": 2,
153        "date": "2024-10-01 22:00:00",
154        "actual": false
155      }
156    },
157    "vessels": [
158      {
159        "id": 1,
160        "name": "CAPE MALE",
161        "imo": 9440150,
162        "call_sign": "V7RU3",
163        "mmsi": 538003580,
164        "flag": "MH"
165      },
166      {
167        "id": 2,
168        "name": "MONACO",
169        "imo": 9314961,
170        "call_sign": "A8IF2",
171        "mmsi": 636090967,
172        "flag": "LR"
173      },
174      {
175        "id": 3,
176        "name": "MAERSK CAMBRIDGE",
177        "imo": 9924182,
178        "call_sign": "5LDM2",
179        "mmsi": 636021337,
180        "flag": "LR"
181      }
182    ],
183    "container": {
184      "number": "CAAU6505323",
185      "iso_code": "45G1",
186      "size_type": "40' High Cube Dry",
187      "status": "IN_TRANSIT",
188      "is_status_from_sealine": true,
189      "events": [
190        {
191          "order_id": 1,
192          "location": 4,
193          "facility": 3,
194          "description": "Gate out",
195          "event_type": "EQUIPMENT",
196          "event_code": "GTOT",
197          "status": "CPS",
198          "date": "2024-07-23 13:47:00",
199          "actual": true,
200          "is_additional_event": false,
201          "type": "land",
202          "transport_type": null,
203          "vessel": null,
204          "voyage": null
205        },
206        {
207          "order_id": 2,
208          "location": 4,
209          "facility": 3,
210          "description": "Gate in",
211          "event_type": "EQUIPMENT",
212          "event_code": "GTIN",
213          "status": "CEP",
214          "date": "2024-07-24 14:44:00",
215          "actual": true,
216          "is_additional_event": false,
217          "type": "land",
218          "transport_type": null,
219          "vessel": null,
220          "voyage": null
221        },
222        {
223          "order_id": 3,
224          "location": 4,
225          "facility": 3,
226          "description": "Load",
227          "event_type": "EQUIPMENT",
228          "event_code": "LOAD",
229          "status": "CLL",
230          "date": "2024-07-30 16:31:00",
231          "actual": true,
232          "is_additional_event": false,
233          "type": "sea",
234          "transport_type": null,
235          "vessel": 2,
236          "voyage": "431S"
237        },
238        {
239          "order_id": 4,
240          "location": 4,
241          "facility": 3,
242          "description": "Vessel departure",
243          "event_type": "TRANSPORT",
244          "event_code": "DEPA",
245          "status": "VDL",
246          "date": "2024-07-30 23:55:00",
247          "actual": true,
248          "is_additional_event": false,
249          "type": "sea",
250          "transport_type": "VESSEL",
251          "vessel": 2,
252          "voyage": "431S"
253        },
254        {
255          "order_id": 5,
256          "location": 3,
257          "facility": 2,
258          "description": "Vessel arrival",
259          "event_type": "TRANSPORT",
260          "event_code": "ARRI",
261          "status": "VAT",
262          "date": "2024-08-05 22:50:00",
263          "actual": true,
264          "is_additional_event": false,
265          "type": "sea",
266          "transport_type": "VESSEL",
267          "vessel": 2,
268          "voyage": "431S"
269        },
270        {
271          "order_id": 6,
272          "location": 3,
273          "facility": 2,
274          "description": "Discharge",
275          "event_type": "EQUIPMENT",
276          "event_code": "DISC",
277          "status": "CDT",
278          "date": "2024-08-06 03:13:00",
279          "actual": true,
280          "is_additional_event": false,
281          "type": "sea",
282          "transport_type": null,
283          "vessel": 2,
284          "voyage": "431S"
285        },
286        {
287          "order_id": 7,
288          "location": 3,
289          "facility": 2,
290          "description": "Load",
291          "event_type": "EQUIPMENT",
292          "event_code": "LOAD",
293          "status": "CLT",
294          "date": "2024-08-09 01:59:00",
295          "actual": true,
296          "is_additional_event": false,
297          "type": "sea",
298          "transport_type": null,
299          "vessel": 3,
300          "voyage": "430W"
301        },
302        {
303          "order_id": 8,
304          "location": 3,
305          "facility": 2,
306          "description": "Vessel departure",
307          "event_type": "TRANSPORT",
308          "event_code": "DEPA",
309          "status": "VDT",
310          "date": "2024-08-09 15:00:00",
311          "actual": true,
312          "is_additional_event": false,
313          "type": "sea",
314          "transport_type": "VESSEL",
315          "vessel": 3,
316          "voyage": "430W"
317        },
318        {
319          "order_id": 9,
320          "location": 1,
321          "facility": 1,
322          "description": "Vessel arrival",
323          "event_type": "TRANSPORT",
324          "event_code": "ARRI",
325          "status": "VAT",
326          "date": "2024-09-17 12:00:00",
327          "actual": false,
328          "is_additional_event": false,
329          "type": "sea",
330          "transport_type": "VESSEL",
331          "vessel": 3,
332          "voyage": "430W"
333        },
334        {
335          "order_id": 10,
336          "location": 1,
337          "facility": null,
338          "description": "Vessel departure",
339          "event_type": "TRANSPORT",
340          "event_code": "DEPA",
341          "status": "VDT",
342          "date": "2024-09-21 13:00:00",
343          "actual": false,
344          "is_additional_event": false,
345          "type": "sea",
346          "transport_type": "VESSEL",
347          "vessel": 1,
348          "voyage": "438N"
349        },
350        {
351          "order_id": 11,
352          "location": 5,
353          "facility": 4,
354          "description": "Vessel arrival",
355          "event_type": "TRANSPORT",
356          "event_code": "ARRI",
357          "status": "VAD",
358          "date": "2024-09-27 08:00:00",
359          "actual": false,
360          "is_additional_event": false,
361          "type": "sea",
362          "transport_type": "VESSEL",
363          "vessel": 1,
364          "voyage": "438N"
365        },
366        {
367          "order_id": 12,
368          "location": 5,
369          "facility": null,
370          "description": "Gate out",
371          "event_type": "EQUIPMENT",
372          "event_code": "GTOT",
373          "status": "LTS",
374          "date": "2024-09-28 22:00:00",
375          "actual": false,
376          "is_additional_event": false,
377          "type": "land",
378          "transport_type": null,
379          "vessel": null,
380          "voyage": null
381        },
382        {
383          "order_id": 13,
384          "location": 2,
385          "facility": 5,
386          "description": "Gate in",
387          "event_type": "EQUIPMENT",
388          "event_code": "GTIN",
389          "status": "CDC",
390          "date": "2024-10-01 22:00:00",
391          "actual": false,
392          "is_additional_event": false,
393          "type": "land",
394          "transport_type": null,
395          "vessel": null,
396          "voyage": null
397        }
398      ]
399    }
400  }
401}

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": "242350920",
8      "sealine": "MAEU",
9      "sealine_name": "Maersk",
10      "status": "IN_TRANSIT",
11      "is_status_from_sealine": true,
12      "updated_at": "2024-09-05 13:28:57",
13      "cache_expires": "2024-09-06 13:28:57",
14      "api_calls": {
15        "total": 100,
16        "used": 1,
17        "remaining": 99
18      },
19      "unique_shipments": {
20        "total": 0,
21        "used": 0,
22        "remaining": 0
23      }
24    },
25    "locations": [
26      {
27        "id": 1,
28        "name": "Port Said East",
29        "state": "As Suways",
30        "country": "Egypt",
31        "country_code": "EG",
32        "locode": "EGPSE",
33        "lat": 31.216666666667,
34        "lng": 32.35,
35        "timezone": "Africa/Cairo"
36      },
37      {
38        "id": 2,
39        "name": "Chornomors'k",
40        "state": "Odeska Oblast",
41        "country": "Ukraine",
42        "country_code": "UA",
43        "locode": "UAILK",
44        "lat": 46.29914,
45        "lng": 30.65529,
46        "timezone": "Europe/Simferopol"
47      },
48      {
49        "id": 3,
50        "name": "Shanghai",
51        "state": "Shanghai Shi",
52        "country": "China",
53        "country_code": "CN",
54        "locode": "CNSHG",
55        "lat": 31.366365,
56        "lng": 121.61475,
57        "timezone": "Asia/Shanghai"
58      },
59      {
60        "id": 4,
61        "name": "Yokohama",
62        "state": "Kanagawa",
63        "country": "Japan",
64        "country_code": "JP",
65        "locode": "JPYOK",
66        "lat": 35.43333,
67        "lng": 139.65,
68        "timezone": "Asia/Tokyo"
69      },
70      {
71        "id": 5,
72        "name": "Constanta",
73        "state": "Constanta",
74        "country": "Romania",
75        "country_code": "RO",
76        "locode": "ROCND",
77        "lat": 44.18073,
78        "lng": 28.63432,
79        "timezone": "Europe/Bucharest"
80      }
81    ],
82    "facilities": [
83      {
84        "id": 1,
85        "name": "EAST PORT SAID TERMINAL",
86        "country_code": "EG",
87        "locode": null,
88        "bic_code": null,
89        "smdg_code": null,
90        "lat": null,
91        "lng": null
92      },
93      {
94        "id": 2,
95        "name": "YANGSHAN SGH GUANDONG TERMINAL",
96        "country_code": "CN",
97        "locode": null,
98        "bic_code": null,
99        "smdg_code": null,
100        "lat": null,
101        "lng": null
102      },
103      {
104        "id": 3,
105        "name": "Maersk Yokohama terminal",
106        "country_code": "JP",
107        "locode": null,
108        "bic_code": null,
109        "smdg_code": null,
110        "lat": null,
111        "lng": null
112      },
113      {
114        "id": 4,
115        "name": "CSCT Terminal",
116        "country_code": "RO",
117        "locode": null,
118        "bic_code": null,
119        "smdg_code": null,
120        "lat": null,
121        "lng": null
122      },
123      {
124        "id": 5,
125        "name": "Fishing Port of Ilyichevsk",
126        "country_code": "UA",
127        "locode": null,
128        "bic_code": null,
129        "smdg_code": null,
130        "lat": null,
131        "lng": null
132      }
133    ],
134    "route": {
135      "prepol": {
136        "location": 4,
137        "date": "2024-07-24 14:44:00",
138        "actual": true
139      },
140      "pol": {
141        "location": 4,
142        "date": "2024-07-30 23:55:00",
143        "actual": true
144      },
145      "pod": {
146        "location": 5,
147        "date": "2024-09-27 08:00:00",
148        "actual": false,
149        "predictive_eta": null
150      },
151      "postpod": {
152        "location": 2,
153        "date": "2024-10-01 22:00:00",
154        "actual": false
155      }
156    },
157    "vessels": [
158      {
159        "id": 1,
160        "name": "CAPE MALE",
161        "imo": 9440150,
162        "call_sign": "V7RU3",
163        "mmsi": 538003580,
164        "flag": "MH"
165      },
166      {
167        "id": 2,
168        "name": "MONACO",
169        "imo": 9314961,
170        "call_sign": "A8IF2",
171        "mmsi": 636090967,
172        "flag": "LR"
173      },
174      {
175        "id": 3,
176        "name": "MAERSK CAMBRIDGE",
177        "imo": 9924182,
178        "call_sign": "5LDM2",
179        "mmsi": 636021337,
180        "flag": "LR"
181      }
182    ],
183    "containers": [
184      {
185        "number": "CAAU6505323",
186        "iso_code": "45G1",
187        "size_type": "40' High Cube Dry",
188        "status": "IN_TRANSIT",
189        "is_status_from_sealine": true,
190        "events": [
191          {
192            "order_id": 1,
193            "location": 4,
194            "facility": 3,
195            "description": "Gate out",
196            "event_type": "EQUIPMENT",
197            "event_code": "GTOT",
198            "status": "CPS",
199            "date": "2024-07-23 13:47:00",
200            "actual": true,
201            "is_additional_event": false,
202            "type": "land",
203            "transport_type": null,
204            "vessel": null,
205            "voyage": null
206          },
207          {
208            "order_id": 2,
209            "location": 4,
210            "facility": 3,
211            "description": "Gate in",
212            "event_type": "EQUIPMENT",
213            "event_code": "GTIN",
214            "status": "CEP",
215            "date": "2024-07-24 14:44:00",
216            "actual": true,
217            "is_additional_event": false,
218            "type": "land",
219            "transport_type": null,
220            "vessel": null,
221            "voyage": null
222          },
223          {
224            "order_id": 3,
225            "location": 4,
226            "facility": 3,
227            "description": "Load",
228            "event_type": "EQUIPMENT",
229            "event_code": "LOAD",
230            "status": "CLL",
231            "date": "2024-07-30 16:31:00",
232            "actual": true,
233            "is_additional_event": false,
234            "type": "sea",
235            "transport_type": null,
236            "vessel": 2,
237            "voyage": "431S"
238          },
239          {
240            "order_id": 4,
241            "location": 4,
242            "facility": 3,
243            "description": "Vessel departure",
244            "event_type": "TRANSPORT",
245            "event_code": "DEPA",
246            "status": "VDL",
247            "date": "2024-07-30 23:55:00",
248            "actual": true,
249            "is_additional_event": false,
250            "type": "sea",
251            "transport_type": "VESSEL",
252            "vessel": 2,
253            "voyage": "431S"
254          },
255          {
256            "order_id": 5,
257            "location": 3,
258            "facility": 2,
259            "description": "Vessel arrival",
260            "event_type": "TRANSPORT",
261            "event_code": "ARRI",
262            "status": "VAT",
263            "date": "2024-08-05 22:50:00",
264            "actual": true,
265            "is_additional_event": false,
266            "type": "sea",
267            "transport_type": "VESSEL",
268            "vessel": 2,
269            "voyage": "431S"
270          },
271          {
272            "order_id": 6,
273            "location": 3,
274            "facility": 2,
275            "description": "Discharge",
276            "event_type": "EQUIPMENT",
277            "event_code": "DISC",
278            "status": "CDT",
279            "date": "2024-08-06 03:13:00",
280            "actual": true,
281            "is_additional_event": false,
282            "type": "sea",
283            "transport_type": null,
284            "vessel": 2,
285            "voyage": "431S"
286          },
287          {
288            "order_id": 7,
289            "location": 3,
290            "facility": 2,
291            "description": "Load",
292            "event_type": "EQUIPMENT",
293            "event_code": "LOAD",
294            "status": "CLT",
295            "date": "2024-08-09 01:59:00",
296            "actual": true,
297            "is_additional_event": false,
298            "type": "sea",
299            "transport_type": null,
300            "vessel": 3,
301            "voyage": "430W"
302          },
303          {
304            "order_id": 8,
305            "location": 3,
306            "facility": 2,
307            "description": "Vessel departure",
308            "event_type": "TRANSPORT",
309            "event_code": "DEPA",
310            "status": "VDT",
311            "date": "2024-08-09 15:00:00",
312            "actual": true,
313            "is_additional_event": false,
314            "type": "sea",
315            "transport_type": "VESSEL",
316            "vessel": 3,
317            "voyage": "430W"
318          },
319          {
320            "order_id": 9,
321            "location": 1,
322            "facility": 1,
323            "description": "Vessel arrival",
324            "event_type": "TRANSPORT",
325            "event_code": "ARRI",
326            "status": "VAT",
327            "date": "2024-09-17 12:00:00",
328            "actual": false,
329            "is_additional_event": false,
330            "type": "sea",
331            "transport_type": "VESSEL",
332            "vessel": 3,
333            "voyage": "430W"
334          },
335          {
336            "order_id": 10,
337            "location": 1,
338            "facility": null,
339            "description": "Vessel departure",
340            "event_type": "TRANSPORT",
341            "event_code": "DEPA",
342            "status": "VDT",
343            "date": "2024-09-21 13:00:00",
344            "actual": false,
345            "is_additional_event": false,
346            "type": "sea",
347            "transport_type": "VESSEL",
348            "vessel": 1,
349            "voyage": "438N"
350          },
351          {
352            "order_id": 11,
353            "location": 5,
354            "facility": 4,
355            "description": "Vessel arrival",
356            "event_type": "TRANSPORT",
357            "event_code": "ARRI",
358            "status": "VAD",
359            "date": "2024-09-27 08:00:00",
360            "actual": false,
361            "is_additional_event": false,
362            "type": "sea",
363            "transport_type": "VESSEL",
364            "vessel": 1,
365            "voyage": "438N"
366          },
367          {
368            "order_id": 12,
369            "location": 5,
370            "facility": null,
371            "description": "Gate out",
372            "event_type": "EQUIPMENT",
373            "event_code": "GTOT",
374            "status": "LTS",
375            "date": "2024-09-28 22:00:00",
376            "actual": false,
377            "is_additional_event": false,
378            "type": "land",
379            "transport_type": null,
380            "vessel": null,
381            "voyage": null
382          },
383          {
384            "order_id": 13,
385            "location": 2,
386            "facility": 5,
387            "description": "Gate in",
388            "event_type": "EQUIPMENT",
389            "event_code": "GTIN",
390            "status": "CDC",
391            "date": "2024-10-01 22:00:00",
392            "actual": false,
393            "is_additional_event": false,
394            "type": "land",
395            "transport_type": null,
396            "vessel": null,
397            "voyage": null
398          }
399        ]
400      }
401    ],
402    "route_data": {
403      "route": [
404        {
405          "path": [
406            [
407              35.4333,
408              139.65
409            ],
410            [
411              34.8051,
412              140.019
413            ],
414            [
415              34.7926,
416              140.0233
417            ],
418            [
419              34.782,
420              140.0206
421            ],
422            [
423              34.7732,
424              140.011
425            ],
426            [
427              34.5101,
428              139.5631
429            ],
430            [
431              34.5013,
432              139.553
433            ],
434            [
435              34.4904,
436              139.5496
437            ],
438            [
439              34.4775,
440              139.5528
441            ],
442            [
443              33.8427,
444              139.856
445            ],
446            [
447              33.8303,
448              139.8592
449            ],
450            [
451              33.8198,
452              139.8561
453            ],
454            [
455              33.8112,
456              139.8467
457            ],
458            [
459              33.4673,
460              139.2661
461            ],
462            [
463              33.4603,
464              139.2531
465            ],
466            [
467              33.4543,
468              139.2396
469            ],
470            [
471              33.4495,
472              139.2257
473            ],
474            [
475              30.8957,
476              130.7086
477            ],
478            [
479              30.8909,
480              130.688
481            ],
482            [
483              30.8886,
484              130.6672
485            ],
486            [
487              30.8889,
488              130.6462
489            ],
490            [
491              31.5336,
492              122.4785
493            ],
494            [
495              31.5383,
496              122.4596
497            ],
498            [
499              31.549,
500              122.4452
501            ],
502            [
503              31.5657,
504              122.4353
505            ],
506            [
507              31.6372,
508              122.4084
509            ],
510            [
511              31.6497,
512              122.4006
513            ],
514            [
515              31.6548,
516              122.3895
517            ],
518            [
519              31.6526,
520              122.3751
521            ],
522            [
523              31.3664,
524              121.6148
525            ]
526          ],
527          "type": "SEA",
528          "transport_type": "VESSEL"
529        },
530        {
531          "path": [
532            [
533              31.3664,
534              121.6148
535            ],
536            [
537              31.6524,
538              122.3746
539            ],
540            [
541              31.6548,
542              122.3891
543            ],
544            [
545              31.6499,
546              122.4003
547            ],
548            [
549              31.6376,
550              122.4082
551            ],
552            [
553              31.5675,
554              122.4346
555            ],
556            [
557              31.548,
558              122.444
559            ],
560            [
561              31.531,
562              122.4567
563            ],
564            [
565              31.5163,
566              122.4726
567            ],
568            [
569              30.9031,
570              123.2868
571            ],
572            [
573              30.8903,
574              123.3007
575            ],
576            [
577              30.8752,
578              123.3115
579            ],
580            [
581              30.8578,
582              123.3191
583            ],
584            [
585              30.6886,
586              123.3725
587            ],
588            [
589              30.6702,
590              123.3763
591            ],
592            [
593              30.6518,
594              123.3757
595            ],
596            [
597              30.6337,
598              123.3708
599            ],
600            [
601              30.1052,
602              123.1627
603            ],
604            [
605              30.0914,
606              123.157
607            ],
608            [
609              30.0779,
610              123.1508
611            ],
612            [
613              30.0646,
614              123.1441
615            ],
616            [
617              28.8251,
618              122.4928
619            ],
620            [
621              28.8121,
622              122.4857
623            ],
624            [
625              28.7992,
626              122.4783
627            ],
628            [
629              28.7865,
630              122.4705
631            ],
632            [
633              23.9531,
634              119.4045
635            ],
636            [
637              23.9406,
638              119.3965
639            ],
640            [
641              23.928,
642              119.3886
643            ],
644            [
645              23.9153,
646              119.3808
647            ],
648            [
649              23.5336,
650              119.1435
651            ],
652            [
653              23.5157,
654              119.133
655            ],
656            [
657              23.4974,
658              119.1235
659            ],
660            [
661              23.4785,
662              119.115
663            ],
664            [
665              8.704,
666              112.9062
667            ],
668            [
669              8.685,
670              112.8979
671            ],
672            [
673              8.6663,
674              112.889
675            ],
676            [
677              8.6479,
678              112.8796
679            ],
680            [
681              1.5884,
682              109.1108
683            ],
684            [
685              1.57,
686              109.1012
687            ],
688            [
689              1.5513,
690              109.0921
691            ],
692            [
693              1.5324,
694              109.0833
695            ],
696            [
697              -5.8096,
698              105.791
699            ],
700            [
701              -5.8208,
702              105.7842
703            ],
704            [
705              -5.8294,
706              105.775
707            ],
708            [
709              -5.8353,
710              105.7634
711            ],
712            [
713              -34.2102,
714              25.8073
715            ],
716            [
717              -34.2145,
718              25.7943
719            ],
720            [
721              -34.2182,
722              25.7811
723            ],
724            [
725              -34.2212,
726              25.7678
727            ],
728            [
729              -34.4072,
730              24.8483
731            ],
732            [
733              -34.411,
734              24.8282
735            ],
736            [
737              -34.4143,
738              24.8081
739            ],
740            [
741              -34.4172,
742              24.7879
743            ],
744            [
745              -35.0052,
746              20.1561
747            ],
748            [
749              -35.0073,
750              20.1356
751            ],
752            [
753              -35.0081,
754              20.1151
755            ],
756            [
757              -35.0077,
758              20.0945
759            ],
760            [
761              -34.9862,
762              19.6461
763            ],
764            [
765              -34.9849,
766              19.6325
767            ],
768            [
769              -34.9823,
770              19.6191
771            ],
772            [
773              -34.9783,
774              19.606
775            ],
776            [
777              -34.5435,
778              18.3853
779            ],
780            [
781              -34.5379,
782              18.3729
783            ],
784            [
785              -34.5304,
786              18.3619
787            ],
788            [
789              -34.521,
790              18.3522
791            ],
792            [
793              -12.0547,
794              -1.0276
795            ],
796            [
797              -5.248424710554634,
798              -5.605010929879285
799            ],
800            [
801              11.0969,
802              -16.5977
803            ],
804            [
805              11.1122,
806              -16.6069
807            ],
808            [
809              11.1283,
810              -16.6146
811            ],
812            [
813              11.1451,
814              -16.6207
815            ],
816            [
817              14.7406,
818              -17.7419
819            ],
820            [
821              14.7558,
822              -17.7456
823            ],
824            [
825              14.7712,
826              -17.7474
827            ],
828            [
829              14.7867,
830              -17.7472
831            ],
832            [
833              20.8333,
834              -17.3203
835            ],
836            [
837              20.849,
838              -17.319
839            ],
840            [
841              20.8646,
842              -17.3173
843            ],
844            [
845              20.8802,
846              -17.3152
847            ],
848            [
849              21.8168,
850              -17.1795
851            ],
852            [
853              21.8354,
854              -17.1761
855            ],
856            [
857              21.8536,
858              -17.1713
859            ],
860            [
861              21.8715,
862              -17.1653
863            ],
864            [
865              22.2477,
866              -17.0217
867            ],
868            [
869              22.2652,
870              -17.0145
871            ],
872            [
873              22.2824,
874              -17.0065
875            ],
876            [
877              22.2991,
878              -16.9976
879            ],
880            [
881              23.9197,
882              -16.0901
883            ],
884            [
885              23.932,
886              -16.0831
887            ],
888            [
889              23.9441,
890              -16.076
891            ],
892            [
893              23.9563,
894              -16.0688
895            ],
896            [
897              26.2623,
898              -14.6782
899            ],
900            [
901              26.2742,
902              -14.6706
903            ],
904            [
905              26.2857,
906              -14.6625
907            ],
908            [
909              26.2967,
910              -14.6538
911            ],
912            [
913              32.5313,
914              -9.5425
915            ],
916            [
917              32.5473,
918              -9.529
919            ],
920            [
921              32.5628,
922              -9.5151
923            ],
924            [
925              32.578,
926              -9.5007
927            ],
928            [
929              33.3693,
930              -8.7296
931            ],
932            [
933              33.3823,
934              -8.7167
935            ],
936            [
937              33.3951,
938              -8.7035
939            ],
940            [
941              33.4076,
942              -8.6901
943            ],
944            [
945              35.7783,
946              -6.1123
947            ],
948            [
949              35.7901,
950              -6.0983
951            ],
952            [
953              35.8005,
954              -6.0834
955            ],
956            [
957              35.8097,
958              -6.0676
959            ],
960            [
961              35.8556,
962              -5.9802
963            ],
964            [
965              35.8613,
966              -5.9674
967            ],
968            [
969              35.8655,
970              -5.9542
971            ],
972            [
973              35.8683,
974              -5.9404
975            ],
976            [
977              35.9571,
978              -5.3034
979            ],
980            [
981              35.959,
982              -5.2894
983            ],
984            [
985              35.9609,
986              -5.2753
987            ],
988            [
989              35.9627,
990              -5.2613
991            ],
992            [
993              36.9893,
994              2.7719
995            ],
996            [
997              36.9919,
998              2.7928
999            ],
1000            [
1001              36.9946,
1002              2.8136
1003            ],
1004            [
1005              36.9972,
1006              2.8345
1007            ],
1008            [
1009              37.1239,
1010              3.8505
1011            ],
1012            [
1013              37.1255,
1014              3.8641
1015            ],
1016            [
1017              37.1268,
1018              3.8778
1019            ],
1020            [
1021              37.1278,
1022              3.8914
1023            ],
1024            [
1025              37.4687,
1026              9.1513
1027            ],
1028            [
1029              37.4693,
1030              9.165
1031            ],
1032            [
1033              37.4693,
1034              9.1786
1035            ],
1036            [
1037              37.4689,
1038              9.1923
1039            ],
1040            [
1041              37.4651,
1042              9.2666
1043            ],
1044            [
1045              37.4639,
1046              9.2874
1047            ],
1048            [
1049              37.4626,
1050              9.3082
1051            ],
1052            [
1053              37.4611,
1054              9.3289
1055            ],
1056            [
1057              37.3824,
1058              10.3491
1059            ],
1060            [
1061              37.3804,
1062              10.3686
1063            ],
1064            [
1065              37.3773,
1066              10.388
1067            ],
1068            [
1069              37.3732,
1070              10.4071
1071            ],
1072            [
1073              36.9404,
1074              12.2022
1075            ],
1076            [
1077              36.9358,
1078              12.2213
1079            ],
1080            [
1081              36.931,
1082              12.2403
1083            ],
1084            [
1085              36.926,
1086              12.2594
1087            ],
1088            [
1089              31.7397,
1090              31.9184
1091            ],
1092            [
1093              31.7327,
1094              31.9377
1095            ],
1096            [
1097              31.7227,
1098              31.9553
1099            ],
1100            [
1101              31.7096,
1102              31.9712
1103            ],
1104            [
1105              31.3907,
1106              32.2975
1107            ],
1108            [
1109              31.3806,
1110              32.3057
1111            ],
1112            [
1113              31.3692,
1114              32.311
1115            ],
1116            [
1117              31.3565,
1118              32.3135
1119            ],
1120            [
1121              31.2345,
1122              32.3237
1123            ],
1124            [
1125              31.2236,
1126              32.327
1127            ],
1128            [
1129              31.2176,
1130              32.3343
1131            ],
1132            [
1133              31.2163,
1134              32.3457
1135            ],
1136            [
1137              31.2167,
1138              32.35
1139            ]
1140          ],
1141          "type": "SEA",
1142          "transport_type": "VESSEL"
1143        },
1144        {
1145          "path": [
1146            [
1147              31.2167,
1148              32.35
1149            ],
1150            [
1151              31.2163,
1152              32.3457
1153            ],
1154            [
1155              31.2176,
1156              32.3343
1157            ],
1158            [
1159              31.2237,
1160              32.327
1161            ],
1162            [
1163              31.2345,
1164              32.3237
1165            ],
1166            [
1167              31.3565,
1168              32.3135
1169            ],
1170            [
1171              31.3692,
1172              32.311
1173            ],
1174            [
1175              31.3807,
1176              32.3057
1177            ],
1178            [
1179              31.3908,
1180              32.2976
1181            ],
1182            [
1183              36.6368,
1184              26.9706
1185            ],
1186            [
1187              36.651,
1188              26.9575
1189            ],
1190            [
1191              36.6663,
1192              26.9459
1193            ],
1194            [
1195              36.6828,
1196              26.9359
1197            ],
1198            [
1199              36.6928,
1200              26.9304
1201            ],
1202            [
1203              36.7083,
1204              26.9223
1205            ],
1206            [
1207              36.724,
1208              26.9145
1209            ],
1210            [
1211              36.74,
1212              26.9073
1213            ],
1214            [
1215              38.2495,
1216              26.2453
1217            ],
1218            [
1219              38.2656,
1220              26.2383
1221            ],
1222            [
1223              38.2817,
1224              26.2315
1225            ],
1226            [
1227              38.2979,
1228              26.2247
1229            ],
1230            [
1231              38.4722,
1232              26.1529
1233            ],
1234            [
1235              38.4858,
1236              26.1471
1237            ],
1238            [
1239              38.4992,
1240              26.1409
1241            ],
1242            [
1243              38.5124,
1244              26.1344
1245            ],
1246            [
1247              38.632,
1248              26.0728
1249            ],
1250            [
1251              38.645,
1252              26.0659
1253            ],
1254            [
1255              38.6579,
1256              26.0586
1257            ],
1258            [
1259              38.6705,
1260              26.0511
1261            ],
1262            [
1263              39.1025,
1264              25.7852
1265            ],
1266            [
1267              39.1185,
1268              25.7784
1269            ],
1270            [
1271              39.1349,
1272              25.7774
1273            ],
1274            [
1275              39.1515,
1276              25.7821
1277            ],
1278            [
1279              39.9171,
1280              26.1407
1281            ],
1282            [
1283              39.9331,
1284              26.1496
1285            ],
1286            [
1287              39.9476,
1288              26.1606
1289            ],
1290            [
1291              39.9604,
1292              26.1737
1293            ],
1294            [
1295              40.1291,
1296              26.3744
1297            ],
1298            [
1299              40.142,
1300              26.3895
1301            ],
1302            [
1303              40.1553,
1304              26.4044
1305            ],
1306            [
1307              40.1689,
1308              26.419
1309            ],
1310            [
1311              40.2109,
1312              26.4632
1313            ],
1314            [
1315              40.2242,
1316              26.478
1317            ],
1318            [
1319              40.2367,
1320              26.4934
1321            ],
1322            [
1323              40.2484,
1324              26.5095
1325            ],
1326            [
1327              40.3875,
1328              26.7122
1329            ],
1330            [
1331              40.3972,
1332              26.7281
1333            ],
1334            [
1335              40.4052,
1336              26.7447
1337            ],
1338            [
1339              40.4115,
1340              26.7622
1341            ],
1342            [
1343              40.6552,
1344              27.5781
1345            ],
1346            [
1347              40.6603,
1348              27.596
1349            ],
1350            [
1351              40.665,
1352              27.6141
1353            ],
1354            [
1355              40.6693,
1356              27.6324
1357            ],
1358            [
1359              40.9304,
1360              28.8047
1361            ],
1362            [
1363              40.9339,
1364              28.8189
1365            ],
1366            [
1367              40.9383,
1368              28.8329
1369            ],
1370            [
1371              40.9434,
1372              28.8466
1373            ],
1374            [
1375              40.9939,
1376              28.9708
1377            ],
1378            [
1379              41.0007,
1380              28.9832
1381            ],
1382            [
1383              41.01,
1384              28.9932
1385            ],
1386            [
1387              41.0219,
1388              29.0008
1389            ],
1390            [
1391              41.0032,
1392              28.9918
1393            ],
1394            [
1395              41.0201,
1396              29.0014
1397            ],
1398            [
1399              41.0352,
1400              29.0132
1401            ],
1402            [
1403              41.0486,
1404              29.0272
1405            ],
1406            [
1407              41.0301,
1408              29.0047
1409            ],
1410            [
1411              41.043,
1412              29.0195
1413            ],
1414            [
1415              41.0568,
1416              29.0333
1417            ],
1418            [
1419              41.0714,
1420              29.0464
1421            ],
1422            [
1423              41.049,
1424              29.0277
1425            ],
1426            [
1427              41.0674,
1428              29.0417
1429            ],
1430            [
1431              41.0868,
1432              29.054
1433            ],
1434            [
1435              41.1073,
1436              29.0647
1437            ],
1438            [
1439              41.0863,
1440              29.055
1441            ],
1442            [
1443              41.101,
1444              29.0616
1445            ],
1446            [
1447              41.1158,
1448              29.0678
1449            ],
1450            [
1451              41.1307,
1452              29.0737
1453            ],
1454            [
1455              41.1149,
1456              29.0677
1457            ],
1458            [
1459              41.1257,
1460              29.0705
1461            ],
1462            [
1463              41.1365,
1464              29.0707
1465            ],
1466            [
1467              41.1473,
1468              29.0682
1469            ],
1470            [
1471              41.1417,
1472              29.0702
1473            ],
1474            [
1475              41.1457,
1476              29.0691
1477            ],
1478            [
1479              41.1497,
1480              29.0685
1481            ],
1482            [
1483              41.1538,
1484              29.0686
1485            ],
1486            [
1487              41.1476,
1488              29.0681
1489            ],
1490            [
1491              41.1517,
1492              29.0687
1493            ],
1494            [
1495              41.1557,
1496              29.0697
1497            ],
1498            [
1499              41.1595,
1500              29.0713
1501            ],
1502            [
1503              41.2154,
1504              29.0993
1505            ],
1506            [
1507              41.2288,
1508              29.1046
1509            ],
1510            [
1511              41.2427,
1512              29.1076
1513            ],
1514            [
1515              41.257,
1516              29.1082
1517            ],
1518            [
1519              44.0528,
1520              28.9735
1521            ],
1522            [
1523              44.0657,
1524              28.9706
1525            ],
1526            [
1527              44.0752,
1528              28.9633
1529            ],
1530            [
1531              44.0814,
1532              28.9517
1533            ],
1534            [
1535              44.1807,
1536              28.6343
1537            ]
1538          ],
1539          "type": "SEA",
1540          "transport_type": "VESSEL"
1541        },
1542        {
1543          "path": [
1544            [
1545              44.1806904,
1546              28.6337161
1547            ],
1548            [
1549              44.274323,
1550              28.5571897
1551            ],
1552            [
1553              44.7752845,
1554              28.688693
1555            ],
1556            [
1557              44.9153602,
1558              28.4801996
1559            ],
1560            [
1561              45.0251269,
1562              28.4487212
1563            ],
1564            [
1565              45.2426755,
1566              28.1467366
1567            ],
1568            [
1569              45.3414237,
1570              28.1693852
1571            ],
1572            [
1573              45.4098845,
1574              28.0428815
1575            ],
1576            [
1577              45.4665434,
1578              28.1850386
1579            ],
1580            [
1581              45.5803442,
1582              28.169117
1583            ],
1584            [
1585              46.1746466,
1586              30.0498497
1587            ],
1588            [
1589              46.1822855,
1590              30.3188324
1591            ],
1592            [
1593              46.062305,
1594              30.4509044
1595            ],
1596            [
1597              46.1450565,
1598              30.5261135
1599            ],
1600            [
1601              46.2356615,
1602              30.6078136
1603            ],
1604            [
1605              46.2988944,
1606              30.6552527
1607            ]
1608          ],
1609          "type": "LAND",
1610          "transport_type": "TRUCK"
1611        }
1612      ],
1613      "pin": [
1614        -5.248424710554634,
1615        -5.605010929879285
1616      ],
1617      "ais": {
1618        "status": "OK",
1619        "data": {
1620          "last_event": {
1621            "description": "Vessel departure",
1622            "date": "2024-08-09 15:00:00",
1623            "voyage": "430W"
1624          },
1625          "discharge_port": {
1626            "name": "Constanta",
1627            "country_code": "RO",
1628            "code": "CND",
1629            "date": "2024-09-27 08:00:00",
1630            "date_label": "ETA"
1631          },
1632          "vessel": {
1633            "name": "MAERSK CAMBRIDGE",
1634            "imo": 9924182,
1635            "call_sign": "5LDM2",
1636            "mmsi": 636021337,
1637            "flag": "LR"
1638          },
1639          "last_vessel_position": {
1640            "lat": -12.05474,
1641            "lng": -1.027637,
1642            "updated_at": "2024-09-04 08:38:35"
1643          },
1644          "departure_port": {
1645            "country_code": "SG",
1646            "code": "SIN",
1647            "date": "2024-08-17 23:31:00",
1648            "date_label": "ATD"
1649          },
1650          "arrival_port": {
1651            "country_code": "EG",
1652            "code": "PSD",
1653            "date": "2024-09-17 07:00:00",
1654            "date_label": "ETA"
1655          },
1656          "updated_at": "2024-09-05 13:33:44"
1657        }
1658      }
1659    }
1660  }
1661}

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": 100,
14        "used": 1,
15        "remaining": 99
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": 100,
14        "used": 1,
15        "remaining": 99
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}