Home

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.

    For certain sealines, tracking is supported using a combined number in the format Bill of Lading Number/Container Number or Booking Number/Container Number (e.g., BL12345678/ABCU1234567 or BK12345678/ABCU1234567).

  • 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": "250256386",
8      "sealine": "MAEU",
9      "sealine_name": "Maersk",
10      "status": "IN_TRANSIT",
11      "is_status_from_sealine": true,
12      "from_cache": true,
13      "updated_at": "2025-03-14 07:37:04",
14      "cache_expires": "2025-03-14 19:37:04",
15      "api_calls": {
16        "total": 100,
17        "used": 1,
18        "remaining": 99
19      },
20      "unique_shipments": {
21        "total": 0,
22        "used": 0,
23        "remaining": 0
24      }
25    },
26    "locations": [
27      {
28        "id": 1,
29        "name": "Qingdao",
30        "state": "Shandong Sheng",
31        "country": "China",
32        "country_code": "CN",
33        "locode": "CNQDG",
34        "lat": 36.06488,
35        "lng": 120.38042,
36        "timezone": "Asia/Shanghai"
37      },
38      {
39        "id": 2,
40        "name": "Oakland",
41        "state": "California",
42        "country": "United States",
43        "country_code": "US",
44        "locode": "USOAK",
45        "lat": 37.80437,
46        "lng": -122.2708,
47        "timezone": "America/Los_Angeles"
48      }
49    ],
50    "facilities": [
51      {
52        "id": 1,
53        "name": "OAK INTL CONT TERM BERTH 58 Z985",
54        "country_code": "US",
55        "locode": null,
56        "bic_code": null,
57        "smdg_code": null,
58        "lat": null,
59        "lng": null
60      },
61      {
62        "id": 2,
63        "name": "Smart International Logistics Co",
64        "country_code": "CN",
65        "locode": null,
66        "bic_code": null,
67        "smdg_code": null,
68        "lat": null,
69        "lng": null
70      },
71      {
72        "id": 3,
73        "name": "Qingdao Qianwan Container Co Ltd",
74        "country_code": "CN",
75        "locode": null,
76        "bic_code": null,
77        "smdg_code": null,
78        "lat": null,
79        "lng": null
80      }
81    ],
82    "route": {
83      "prepol": {
84        "location": 1,
85        "date": "2025-03-03 23:05:00",
86        "actual": true
87      },
88      "pol": {
89        "location": 1,
90        "date": "2025-03-12 21:14:00",
91        "actual": true
92      },
93      "pod": {
94        "location": 2,
95        "date": "2025-04-12 08:00:00",
96        "actual": false,
97        "predictive_eta": null
98      },
99      "postpod": {
100        "location": 2,
101        "date": "2025-04-12 08:00:00",
102        "actual": false
103      }
104    },
105    "vessels": [
106      {
107        "id": 1,
108        "name": "MAERSK SHIVLING",
109        "imo": 9728253,
110        "call_sign": "D5JH8",
111        "mmsi": 636017104,
112        "flag": "LR"
113      }
114    ],
115    "containers": [
116      {
117        "number": "MRKU9465770",
118        "iso_code": "22G1",
119        "size_type": "20' Dry Standard",
120        "status": "IN_TRANSIT",
121        "is_status_from_sealine": true,
122        "events": [
123          {
124            "order_id": 1,
125            "location": 1,
126            "facility": 2,
127            "description": "Gate out Empty",
128            "event_type": "EQUIPMENT",
129            "event_code": "GTOT",
130            "status": "CEP",
131            "date": "2025-03-03 23:05:00",
132            "actual": true,
133            "is_date_from_sealine": true,
134            "is_additional_event": false,
135            "type": "land",
136            "transport_type": null,
137            "vessel": null,
138            "voyage": null
139          },
140          {
141            "order_id": 2,
142            "location": 1,
143            "facility": 3,
144            "description": "Gate in",
145            "event_type": "EQUIPMENT",
146            "event_code": "GTIN",
147            "status": "CGI",
148            "date": "2025-03-09 17:58:00",
149            "actual": true,
150            "is_date_from_sealine": true,
151            "is_additional_event": false,
152            "type": "land",
153            "transport_type": null,
154            "vessel": null,
155            "voyage": null
156          },
157          {
158            "order_id": 3,
159            "location": 1,
160            "facility": 3,
161            "description": "Load",
162            "event_type": "EQUIPMENT",
163            "event_code": "LOAD",
164            "status": "CLL",
165            "date": "2025-03-12 14:32:00",
166            "actual": true,
167            "is_date_from_sealine": true,
168            "is_additional_event": false,
169            "type": "sea",
170            "transport_type": "VESSEL",
171            "vessel": 1,
172            "voyage": "510E"
173          },
174          {
175            "order_id": 4,
176            "location": 1,
177            "facility": 3,
178            "description": "Vessel departure",
179            "event_type": "TRANSPORT",
180            "event_code": "DEPA",
181            "status": "VDL",
182            "date": "2025-03-12 21:14:00",
183            "actual": true,
184            "is_date_from_sealine": true,
185            "is_additional_event": false,
186            "type": "sea",
187            "transport_type": "VESSEL",
188            "vessel": 1,
189            "voyage": "510E"
190          },
191          {
192            "order_id": 5,
193            "location": 2,
194            "facility": 1,
195            "description": "Vessel arrival",
196            "event_type": "TRANSPORT",
197            "event_code": "ARRI",
198            "status": "VAD",
199            "date": "2025-04-12 08:00:00",
200            "actual": false,
201            "is_date_from_sealine": true,
202            "is_additional_event": false,
203            "type": "sea",
204            "transport_type": "VESSEL",
205            "vessel": 1,
206            "voyage": "510E"
207          }
208        ]
209      },
210      {
211        "number": "PONU0050964",
212        "iso_code": "22G1",
213        "size_type": "20' Dry Standard",
214        "status": "IN_TRANSIT",
215        "is_status_from_sealine": true,
216        "events": [
217          {
218            "order_id": 1,
219            "location": 1,
220            "facility": 2,
221            "description": "Gate out Empty",
222            "event_type": "EQUIPMENT",
223            "event_code": "GTOT",
224            "status": "CEP",
225            "date": "2025-03-03 23:04:00",
226            "actual": true,
227            "is_date_from_sealine": true,
228            "is_additional_event": false,
229            "type": "land",
230            "transport_type": null,
231            "vessel": null,
232            "voyage": null
233          },
234          {
235            "order_id": 2,
236            "location": 1,
237            "facility": 3,
238            "description": "Gate in",
239            "event_type": "EQUIPMENT",
240            "event_code": "GTIN",
241            "status": "CGI",
242            "date": "2025-03-09 17:58:00",
243            "actual": true,
244            "is_date_from_sealine": true,
245            "is_additional_event": false,
246            "type": "land",
247            "transport_type": null,
248            "vessel": null,
249            "voyage": null
250          },
251          {
252            "order_id": 3,
253            "location": 1,
254            "facility": 3,
255            "description": "Load",
256            "event_type": "EQUIPMENT",
257            "event_code": "LOAD",
258            "status": "CLL",
259            "date": "2025-03-12 14:32:00",
260            "actual": true,
261            "is_date_from_sealine": true,
262            "is_additional_event": false,
263            "type": "sea",
264            "transport_type": "VESSEL",
265            "vessel": 1,
266            "voyage": "510E"
267          },
268          {
269            "order_id": 4,
270            "location": 1,
271            "facility": 3,
272            "description": "Vessel departure",
273            "event_type": "TRANSPORT",
274            "event_code": "DEPA",
275            "status": "VDL",
276            "date": "2025-03-12 21:14:00",
277            "actual": true,
278            "is_date_from_sealine": true,
279            "is_additional_event": false,
280            "type": "sea",
281            "transport_type": "VESSEL",
282            "vessel": 1,
283            "voyage": "510E"
284          },
285          {
286            "order_id": 5,
287            "location": 2,
288            "facility": 1,
289            "description": "Vessel arrival",
290            "event_type": "TRANSPORT",
291            "event_code": "ARRI",
292            "status": "VAD",
293            "date": "2025-04-12 08:00:00",
294            "actual": false,
295            "is_date_from_sealine": true,
296            "is_additional_event": false,
297            "type": "sea",
298            "transport_type": "VESSEL",
299            "vessel": 1,
300            "voyage": "510E"
301          }
302        ]
303      },
304      {
305        "number": "WNGU2504907",
306        "iso_code": "22G1",
307        "size_type": "20' Dry Standard",
308        "status": "IN_TRANSIT",
309        "is_status_from_sealine": true,
310        "events": [
311          {
312            "order_id": 1,
313            "location": 1,
314            "facility": 2,
315            "description": "Gate out Empty",
316            "event_type": "EQUIPMENT",
317            "event_code": "GTOT",
318            "status": "CEP",
319            "date": "2025-03-04 22:04:00",
320            "actual": true,
321            "is_date_from_sealine": true,
322            "is_additional_event": false,
323            "type": "land",
324            "transport_type": null,
325            "vessel": null,
326            "voyage": null
327          },
328          {
329            "order_id": 2,
330            "location": 1,
331            "facility": 3,
332            "description": "Gate in",
333            "event_type": "EQUIPMENT",
334            "event_code": "GTIN",
335            "status": "CGI",
336            "date": "2025-03-09 16:39:00",
337            "actual": true,
338            "is_date_from_sealine": true,
339            "is_additional_event": false,
340            "type": "land",
341            "transport_type": null,
342            "vessel": null,
343            "voyage": null
344          },
345          {
346            "order_id": 3,
347            "location": 1,
348            "facility": 3,
349            "description": "Load",
350            "event_type": "EQUIPMENT",
351            "event_code": "LOAD",
352            "status": "CLL",
353            "date": "2025-03-12 14:51:00",
354            "actual": true,
355            "is_date_from_sealine": true,
356            "is_additional_event": false,
357            "type": "sea",
358            "transport_type": "VESSEL",
359            "vessel": 1,
360            "voyage": "510E"
361          },
362          {
363            "order_id": 4,
364            "location": 1,
365            "facility": 3,
366            "description": "Vessel departure",
367            "event_type": "TRANSPORT",
368            "event_code": "DEPA",
369            "status": "VDL",
370            "date": "2025-03-12 21:14:00",
371            "actual": true,
372            "is_date_from_sealine": true,
373            "is_additional_event": false,
374            "type": "sea",
375            "transport_type": "VESSEL",
376            "vessel": 1,
377            "voyage": "510E"
378          },
379          {
380            "order_id": 5,
381            "location": 2,
382            "facility": 1,
383            "description": "Vessel arrival",
384            "event_type": "TRANSPORT",
385            "event_code": "ARRI",
386            "status": "VAD",
387            "date": "2025-04-12 08:00:00",
388            "actual": false,
389            "is_date_from_sealine": true,
390            "is_additional_event": false,
391            "type": "sea",
392            "transport_type": "VESSEL",
393            "vessel": 1,
394            "voyage": "510E"
395          }
396        ]
397      },
398      {
399        "number": "WNGU2505842",
400        "iso_code": "22G1",
401        "size_type": "20' Dry Standard",
402        "status": "IN_TRANSIT",
403        "is_status_from_sealine": true,
404        "events": [
405          {
406            "order_id": 1,
407            "location": 1,
408            "facility": 2,
409            "description": "Gate out Empty",
410            "event_type": "EQUIPMENT",
411            "event_code": "GTOT",
412            "status": "CEP",
413            "date": "2025-03-05 03:55:00",
414            "actual": true,
415            "is_date_from_sealine": true,
416            "is_additional_event": false,
417            "type": "land",
418            "transport_type": null,
419            "vessel": null,
420            "voyage": null
421          },
422          {
423            "order_id": 2,
424            "location": 1,
425            "facility": 3,
426            "description": "Gate in",
427            "event_type": "EQUIPMENT",
428            "event_code": "GTIN",
429            "status": "CGI",
430            "date": "2025-03-09 20:51:00",
431            "actual": true,
432            "is_date_from_sealine": true,
433            "is_additional_event": false,
434            "type": "land",
435            "transport_type": null,
436            "vessel": null,
437            "voyage": null
438          },
439          {
440            "order_id": 3,
441            "location": 1,
442            "facility": 3,
443            "description": "Load",
444            "event_type": "EQUIPMENT",
445            "event_code": "LOAD",
446            "status": "CLL",
447            "date": "2025-03-12 14:28:00",
448            "actual": true,
449            "is_date_from_sealine": true,
450            "is_additional_event": false,
451            "type": "sea",
452            "transport_type": "VESSEL",
453            "vessel": 1,
454            "voyage": "510E"
455          },
456          {
457            "order_id": 4,
458            "location": 1,
459            "facility": 3,
460            "description": "Vessel departure",
461            "event_type": "TRANSPORT",
462            "event_code": "DEPA",
463            "status": "VDL",
464            "date": "2025-03-12 21:14:00",
465            "actual": true,
466            "is_date_from_sealine": true,
467            "is_additional_event": false,
468            "type": "sea",
469            "transport_type": "VESSEL",
470            "vessel": 1,
471            "voyage": "510E"
472          },
473          {
474            "order_id": 5,
475            "location": 2,
476            "facility": 1,
477            "description": "Vessel arrival",
478            "event_type": "TRANSPORT",
479            "event_code": "ARRI",
480            "status": "VAD",
481            "date": "2025-04-12 08:00:00",
482            "actual": false,
483            "is_date_from_sealine": true,
484            "is_additional_event": false,
485            "type": "sea",
486            "transport_type": "VESSEL",
487            "vessel": 1,
488            "voyage": "510E"
489          }
490        ]
491      },
492      {
493        "number": "WNGU2505884",
494        "iso_code": "22G1",
495        "size_type": "20' Dry Standard",
496        "status": "IN_TRANSIT",
497        "is_status_from_sealine": true,
498        "events": [
499          {
500            "order_id": 1,
501            "location": 1,
502            "facility": 2,
503            "description": "Gate out Empty",
504            "event_type": "EQUIPMENT",
505            "event_code": "GTOT",
506            "status": "CEP",
507            "date": "2025-03-04 22:04:00",
508            "actual": true,
509            "is_date_from_sealine": true,
510            "is_additional_event": false,
511            "type": "land",
512            "transport_type": null,
513            "vessel": null,
514            "voyage": null
515          },
516          {
517            "order_id": 2,
518            "location": 1,
519            "facility": 3,
520            "description": "Gate in",
521            "event_type": "EQUIPMENT",
522            "event_code": "GTIN",
523            "status": "CGI",
524            "date": "2025-03-09 16:39:00",
525            "actual": true,
526            "is_date_from_sealine": true,
527            "is_additional_event": false,
528            "type": "land",
529            "transport_type": null,
530            "vessel": null,
531            "voyage": null
532          },
533          {
534            "order_id": 3,
535            "location": 1,
536            "facility": 3,
537            "description": "Load",
538            "event_type": "EQUIPMENT",
539            "event_code": "LOAD",
540            "status": "CLL",
541            "date": "2025-03-12 14:51:00",
542            "actual": true,
543            "is_date_from_sealine": true,
544            "is_additional_event": false,
545            "type": "sea",
546            "transport_type": "VESSEL",
547            "vessel": 1,
548            "voyage": "510E"
549          },
550          {
551            "order_id": 4,
552            "location": 1,
553            "facility": 3,
554            "description": "Vessel departure",
555            "event_type": "TRANSPORT",
556            "event_code": "DEPA",
557            "status": "VDL",
558            "date": "2025-03-12 21:14:00",
559            "actual": true,
560            "is_date_from_sealine": true,
561            "is_additional_event": false,
562            "type": "sea",
563            "transport_type": "VESSEL",
564            "vessel": 1,
565            "voyage": "510E"
566          },
567          {
568            "order_id": 5,
569            "location": 2,
570            "facility": 1,
571            "description": "Vessel arrival",
572            "event_type": "TRANSPORT",
573            "event_code": "ARRI",
574            "status": "VAD",
575            "date": "2025-04-12 08:00:00",
576            "actual": false,
577            "is_date_from_sealine": true,
578            "is_additional_event": false,
579            "type": "sea",
580            "transport_type": "VESSEL",
581            "vessel": 1,
582            "voyage": "510E"
583          }
584        ]
585      },
586      {
587        "number": "WNGU2506176",
588        "iso_code": "22G1",
589        "size_type": "20' Dry Standard",
590        "status": "IN_TRANSIT",
591        "is_status_from_sealine": true,
592        "events": [
593          {
594            "order_id": 1,
595            "location": 1,
596            "facility": 2,
597            "description": "Gate out Empty",
598            "event_type": "EQUIPMENT",
599            "event_code": "GTOT",
600            "status": "CEP",
601            "date": "2025-03-05 03:35:00",
602            "actual": true,
603            "is_date_from_sealine": true,
604            "is_additional_event": false,
605            "type": "land",
606            "transport_type": null,
607            "vessel": null,
608            "voyage": null
609          },
610          {
611            "order_id": 2,
612            "location": 1,
613            "facility": 3,
614            "description": "Gate in",
615            "event_type": "EQUIPMENT",
616            "event_code": "GTIN",
617            "status": "CGI",
618            "date": "2025-03-09 16:27:00",
619            "actual": true,
620            "is_date_from_sealine": true,
621            "is_additional_event": false,
622            "type": "land",
623            "transport_type": null,
624            "vessel": null,
625            "voyage": null
626          },
627          {
628            "order_id": 3,
629            "location": 1,
630            "facility": 3,
631            "description": "Load",
632            "event_type": "EQUIPMENT",
633            "event_code": "LOAD",
634            "status": "CLL",
635            "date": "2025-03-12 14:54:00",
636            "actual": true,
637            "is_date_from_sealine": true,
638            "is_additional_event": false,
639            "type": "sea",
640            "transport_type": "VESSEL",
641            "vessel": 1,
642            "voyage": "510E"
643          },
644          {
645            "order_id": 4,
646            "location": 1,
647            "facility": 3,
648            "description": "Vessel departure",
649            "event_type": "TRANSPORT",
650            "event_code": "DEPA",
651            "status": "VDL",
652            "date": "2025-03-12 21:14:00",
653            "actual": true,
654            "is_date_from_sealine": true,
655            "is_additional_event": false,
656            "type": "sea",
657            "transport_type": "VESSEL",
658            "vessel": 1,
659            "voyage": "510E"
660          },
661          {
662            "order_id": 5,
663            "location": 2,
664            "facility": 1,
665            "description": "Vessel arrival",
666            "event_type": "TRANSPORT",
667            "event_code": "ARRI",
668            "status": "VAD",
669            "date": "2025-04-12 08:00:00",
670            "actual": false,
671            "is_date_from_sealine": true,
672            "is_additional_event": false,
673            "type": "sea",
674            "transport_type": "VESSEL",
675            "vessel": 1,
676            "voyage": "510E"
677          }
678        ]
679      },
680      {
681        "number": "WNGU2507090",
682        "iso_code": "22G1",
683        "size_type": "20' Dry Standard",
684        "status": "IN_TRANSIT",
685        "is_status_from_sealine": true,
686        "events": [
687          {
688            "order_id": 1,
689            "location": 1,
690            "facility": 2,
691            "description": "Gate out Empty",
692            "event_type": "EQUIPMENT",
693            "event_code": "GTOT",
694            "status": "CEP",
695            "date": "2025-03-05 03:55:00",
696            "actual": true,
697            "is_date_from_sealine": true,
698            "is_additional_event": false,
699            "type": "land",
700            "transport_type": null,
701            "vessel": null,
702            "voyage": null
703          },
704          {
705            "order_id": 2,
706            "location": 1,
707            "facility": 3,
708            "description": "Gate in",
709            "event_type": "EQUIPMENT",
710            "event_code": "GTIN",
711            "status": "CGI",
712            "date": "2025-03-09 20:48:00",
713            "actual": true,
714            "is_date_from_sealine": true,
715            "is_additional_event": false,
716            "type": "land",
717            "transport_type": null,
718            "vessel": null,
719            "voyage": null
720          },
721          {
722            "order_id": 3,
723            "location": 1,
724            "facility": 3,
725            "description": "Load",
726            "event_type": "EQUIPMENT",
727            "event_code": "LOAD",
728            "status": "CLL",
729            "date": "2025-03-12 14:42:00",
730            "actual": true,
731            "is_date_from_sealine": true,
732            "is_additional_event": false,
733            "type": "sea",
734            "transport_type": "VESSEL",
735            "vessel": 1,
736            "voyage": "510E"
737          },
738          {
739            "order_id": 4,
740            "location": 1,
741            "facility": 3,
742            "description": "Vessel departure",
743            "event_type": "TRANSPORT",
744            "event_code": "DEPA",
745            "status": "VDL",
746            "date": "2025-03-12 21:14:00",
747            "actual": true,
748            "is_date_from_sealine": true,
749            "is_additional_event": false,
750            "type": "sea",
751            "transport_type": "VESSEL",
752            "vessel": 1,
753            "voyage": "510E"
754          },
755          {
756            "order_id": 5,
757            "location": 2,
758            "facility": 1,
759            "description": "Vessel arrival",
760            "event_type": "TRANSPORT",
761            "event_code": "ARRI",
762            "status": "VAD",
763            "date": "2025-04-12 08:00:00",
764            "actual": false,
765            "is_date_from_sealine": true,
766            "is_additional_event": false,
767            "type": "sea",
768            "transport_type": "VESSEL",
769            "vessel": 1,
770            "voyage": "510E"
771          }
772        ]
773      },
774      {
775        "number": "WNGU2507233",
776        "iso_code": "22G1",
777        "size_type": "20' Dry Standard",
778        "status": "IN_TRANSIT",
779        "is_status_from_sealine": true,
780        "events": [
781          {
782            "order_id": 1,
783            "location": 1,
784            "facility": 2,
785            "description": "Gate out Empty",
786            "event_type": "EQUIPMENT",
787            "event_code": "GTOT",
788            "status": "CEP",
789            "date": "2025-03-05 03:35:00",
790            "actual": true,
791            "is_date_from_sealine": true,
792            "is_additional_event": false,
793            "type": "land",
794            "transport_type": null,
795            "vessel": null,
796            "voyage": null
797          },
798          {
799            "order_id": 2,
800            "location": 1,
801            "facility": 3,
802            "description": "Gate in",
803            "event_type": "EQUIPMENT",
804            "event_code": "GTIN",
805            "status": "CGI",
806            "date": "2025-03-09 16:29:00",
807            "actual": true,
808            "is_date_from_sealine": true,
809            "is_additional_event": false,
810            "type": "land",
811            "transport_type": null,
812            "vessel": null,
813            "voyage": null
814          },
815          {
816            "order_id": 3,
817            "location": 1,
818            "facility": 3,
819            "description": "Load",
820            "event_type": "EQUIPMENT",
821            "event_code": "LOAD",
822            "status": "CLL",
823            "date": "2025-03-12 14:45:00",
824            "actual": true,
825            "is_date_from_sealine": true,
826            "is_additional_event": false,
827            "type": "sea",
828            "transport_type": "VESSEL",
829            "vessel": 1,
830            "voyage": "510E"
831          },
832          {
833            "order_id": 4,
834            "location": 1,
835            "facility": 3,
836            "description": "Vessel departure",
837            "event_type": "TRANSPORT",
838            "event_code": "DEPA",
839            "status": "VDL",
840            "date": "2025-03-12 21:14:00",
841            "actual": true,
842            "is_date_from_sealine": true,
843            "is_additional_event": false,
844            "type": "sea",
845            "transport_type": "VESSEL",
846            "vessel": 1,
847            "voyage": "510E"
848          },
849          {
850            "order_id": 5,
851            "location": 2,
852            "facility": 1,
853            "description": "Vessel arrival",
854            "event_type": "TRANSPORT",
855            "event_code": "ARRI",
856            "status": "VAD",
857            "date": "2025-04-12 08:00:00",
858            "actual": false,
859            "is_date_from_sealine": true,
860            "is_additional_event": false,
861            "type": "sea",
862            "transport_type": "VESSEL",
863            "vessel": 1,
864            "voyage": "510E"
865          }
866        ]
867      }
868    ],
869    "route_data": {
870      "route": [
871        {
872          "path": [
873            [
874              36.0649,
875              120.3804
876            ],
877            [
878              35.5708,
879              120.8286
880            ],
881            [
882              35.5612,
883              120.8388
884            ],
885            [
886              35.5533,
887              120.8501
888            ],
889            [
890              35.5472,
891              120.8627
892            ],
893            [
894              33.8623,
895              125.0356
896            ],
897            [
898              33.8562,
899              125.0528
900            ],
901            [
902              33.8514,
903              125.0703
904            ],
905            [
906              33.848,
907              125.0882
908            ],
909            [
910              33.7223,
911              125.9125
912            ],
913            [
914              33.7231,
915              125.9275
916            ],
917            [
918              33.7307,
919              125.9376
920            ],
921            [
922              33.745,
923              125.9427
924            ],
925            [
926              33.7717,
927              125.9468
928            ],
929            [
930              33.745,
931              125.9427
932            ],
933            [
934              33.7298,
935              125.9434
936            ],
937            [
938              33.7196,
939              125.9508
940            ],
941            [
942              33.7143,
943              125.9649
944            ],
945            [
946              33.7018,
947              126.0464
948            ],
949            [
950              33.6994,
951              126.053
952            ],
953            [
954              33.6948,
955              126.0561
956            ],
957            [
958              33.6878,
959              126.0556
960            ],
961            [
962              33.6999,
963              126.0591
964            ],
965            [
966              33.6932,
967              126.0585
968            ],
969            [
970              33.6894,
971              126.0615
972            ],
973            [
974              33.6885,
975              126.0681
976            ],
977            [
978              33.7481,
979              126.9036
980            ],
981            [
982              33.7494,
983              126.9217
984            ],
985            [
986              33.7507,
987              126.9398
988            ],
989            [
990              33.752,
991              126.9578
992            ],
993            [
994              33.91265092179989,
995              129.18822808575646
996            ],
997            [
998              34.0022,
999              130.4315
1000            ],
1001            [
1002              34.003,
1003              130.4497
1004            ],
1005            [
1006              34.0028,
1007              130.4679
1008            ],
1009            [
1010              34.0015,
1011              130.486
1012            ],
1013            [
1014              33.9839,
1015              130.6611
1016            ],
1017            [
1018              33.9817,
1019              130.6801
1020            ],
1021            [
1022              33.9786,
1023              130.699
1024            ],
1025            [
1026              33.9749,
1027              130.7177
1028            ],
1029            [
1030              33.9617,
1031              130.7775
1032            ],
1033            [
1034              33.9569,
1035              130.7961
1036            ],
1037            [
1038              33.9507,
1039              130.8142
1040            ],
1041            [
1042              33.9431,
1043              130.8318
1044            ],
1045            [
1046              33.9416,
1047              130.8349
1048            ],
1049            [
1050              33.9341,
1051              130.8506
1052            ],
1053            [
1054              33.9266,
1055              130.8663
1056            ],
1057            [
1058              33.919,
1059              130.882
1060            ],
1061            [
1062              33.9153,
1063              130.8897
1064            ],
1065            [
1066              33.9115,
1067              130.9007
1068            ],
1069            [
1070              33.9105,
1071              130.9119
1072            ],
1073            [
1074              33.9124,
1075              130.9234
1076            ],
1077            [
1078              33.9074,
1079              130.9062
1080            ],
1081            [
1082              33.9117,
1083              130.9172
1084            ],
1085            [
1086              33.9179,
1087              130.9269
1088            ],
1089            [
1090              33.926,
1091              130.9355
1092            ],
1093            [
1094              33.9269,
1095              130.9362
1096            ],
1097            [
1098              33.9367,
1099              130.9454
1100            ],
1101            [
1102              33.9456,
1103              130.9553
1104            ],
1105            [
1106              33.9538,
1107              130.966
1108            ],
1109            [
1110              33.954,
1111              130.9664
1112            ],
1113            [
1114              33.961,
1115              130.9778
1116            ],
1117            [
1118              33.9666,
1119              130.9898
1120            ],
1121            [
1122              33.9708,
1123              131.0025
1124            ],
1125            [
1126              33.9656,
1127              130.9831
1128            ],
1129            [
1130              33.9694,
1131              131.0049
1132            ],
1133            [
1134              33.969,
1135              131.0266
1136            ],
1137            [
1138              33.9645,
1139              131.0483
1140            ],
1141            [
1142              33.94,
1143              131.1264
1144            ],
1145            [
1146              33.934,
1147              131.146
1148            ],
1149            [
1150              33.9283,
1151              131.1657
1152            ],
1153            [
1154              33.9229,
1155              131.1854
1156            ],
1157            [
1158              33.6807,
1159              132.0855
1160            ],
1161            [
1162              33.6766,
1163              132.1054
1164            ],
1165            [
1166              33.6749,
1167              132.1255
1168            ],
1169            [
1170              33.6757,
1171              132.1457
1172            ],
1173            [
1174              33.721,
1175              132.5874
1176            ],
1177            [
1178              33.7235,
1179              132.6081
1180            ],
1181            [
1182              33.7267,
1183              132.6287
1184            ],
1185            [
1186              33.7306,
1187              132.6492
1188            ],
1189            [
1190              34.1492,
1191              134.6545
1192            ],
1193            [
1194              34.1498,
1195              134.6699
1196            ],
1197            [
1198              34.1444,
1199              134.6828
1200            ],
1201            [
1202              34.1332,
1203              134.6933
1204            ],
1205            [
1206              33.4787,
1207              135.1134
1208            ],
1209            [
1210              33.4681,
1211              135.122
1212            ],
1213            [
1214              33.4598,
1215              135.1324
1216            ],
1217            [
1218              33.4538,
1219              135.1447
1220            ],
1221            [
1222              33.2405,
1223              135.7489
1224            ],
1225            [
1226              33.2367,
1227              135.7623
1228            ],
1229            [
1230              33.2347,
1231              135.7759
1232            ],
1233            [
1234              33.2343,
1235              135.7899
1236            ],
1237            [
1238              37.4964,
1239              -123.081
1240            ],
1241            [
1242              37.4979,
1243              -123.0649
1244            ],
1245            [
1246              37.5011,
1247              -123.0491
1248            ],
1249            [
1250              37.506,
1251              -123.0336
1252            ],
1253            [
1254              37.591,
1255              -122.8085
1256            ],
1257            [
1258              37.599,
1259              -122.7875
1260            ],
1261            [
1262              37.6071,
1263              -122.7666
1264            ],
1265            [
1266              37.6154,
1267              -122.7457
1268            ],
1269            [
1270              37.8044,
1271              -122.2708
1272            ]
1273          ],
1274          "type": "SEA",
1275          "transport_type": "VESSEL"
1276        }
1277      ],
1278      "pin": [
1279        33.91265092179989,
1280        129.18822808575646
1281      ],
1282      "ais": {
1283        "status": "OK",
1284        "data": {
1285          "last_event": {
1286            "description": "Vessel departure",
1287            "date": "2025-03-12 21:14:00",
1288            "voyage": "510E"
1289          },
1290          "discharge_port": {
1291            "name": "Oakland",
1292            "country_code": "US",
1293            "code": "OAK",
1294            "date": "2025-04-12 08:00:00",
1295            "date_label": "ETA"
1296          },
1297          "vessel": {
1298            "name": "MAERSK SHIVLING",
1299            "imo": 9728253,
1300            "call_sign": "D5JH8",
1301            "mmsi": 636017104,
1302            "flag": "LR"
1303          },
1304          "last_vessel_position": {
1305            "lat": 35.077282,
1306            "lng": 128.80836,
1307            "updated_at": "2025-03-14 07:47:25"
1308          },
1309          "departure_port": {
1310            "country_code": "CN",
1311            "code": "QDG",
1312            "date": "2025-03-12 13:59:00",
1313            "date_label": "ATD"
1314          },
1315          "arrival_port": {
1316            "country_code": "KR",
1317            "code": "PUS",
1318            "date": "2025-03-14 06:00:00",
1319            "date_label": "ETA"
1320          },
1321          "updated_at": "2025-03-14 07:52:20"
1322        }
1323      }
1324    }
1325  }
1326}

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": "MRKU9465770",
8      "sealine": "MAEU",
9      "sealine_name": "Maersk",
10      "status": "IN_TRANSIT",
11      "is_status_from_sealine": true,
12      "from_cache": false,
13      "updated_at": "2025-03-14 07:54:50",
14      "cache_expires": "2025-03-14 19:54:50",
15      "api_calls": {
16        "total": 100,
17        "used": 1,
18        "remaining": 99
19      },
20      "unique_shipments": {
21        "total": 0,
22        "used": 0,
23        "remaining": 0
24      }
25    },
26    "locations": [
27      {
28        "id": 1,
29        "name": "Qingdao",
30        "state": "Shandong Sheng",
31        "country": "China",
32        "country_code": "CN",
33        "locode": "CNQDG",
34        "lat": 36.06488,
35        "lng": 120.38042,
36        "timezone": "Asia/Shanghai"
37      },
38      {
39        "id": 2,
40        "name": "Oakland",
41        "state": "California",
42        "country": "United States",
43        "country_code": "US",
44        "locode": "USOAK",
45        "lat": 37.80437,
46        "lng": -122.2708,
47        "timezone": "America/Los_Angeles"
48      }
49    ],
50    "facilities": [
51      {
52        "id": 1,
53        "name": "Smart International Logistics Co",
54        "country_code": "CN",
55        "locode": null,
56        "bic_code": null,
57        "smdg_code": null,
58        "lat": null,
59        "lng": null
60      },
61      {
62        "id": 2,
63        "name": "Qingdao Qianwan Container Co Ltd",
64        "country_code": "CN",
65        "locode": null,
66        "bic_code": null,
67        "smdg_code": null,
68        "lat": null,
69        "lng": null
70      },
71      {
72        "id": 3,
73        "name": "OAK INTL CONT TERM BERTH 58 Z985",
74        "country_code": "US",
75        "locode": null,
76        "bic_code": null,
77        "smdg_code": null,
78        "lat": null,
79        "lng": null
80      }
81    ],
82    "route": {
83      "prepol": {
84        "location": 1,
85        "date": "2025-03-03 23:05:00",
86        "actual": true
87      },
88      "pol": {
89        "location": 1,
90        "date": "2025-03-12 21:14:00",
91        "actual": true
92      },
93      "pod": {
94        "location": 2,
95        "date": "2025-04-12 08:00:00",
96        "actual": false,
97        "predictive_eta": null
98      },
99      "postpod": {
100        "location": 2,
101        "date": "2025-04-12 08:00:00",
102        "actual": false
103      }
104    },
105    "vessels": [
106      {
107        "id": 1,
108        "name": "MAERSK SHIVLING",
109        "imo": 9728253,
110        "call_sign": "D5JH8",
111        "mmsi": 636017104,
112        "flag": "LR"
113      }
114    ],
115    "container": {
116      "number": "MRKU9465770",
117      "iso_code": "22G1",
118      "size_type": "20' Dry Standard",
119      "status": "IN_TRANSIT",
120      "is_status_from_sealine": true,
121      "events": [
122        {
123          "order_id": 1,
124          "location": 1,
125          "facility": 1,
126          "description": "Gate out Empty",
127          "event_type": "EQUIPMENT",
128          "event_code": "GTOT",
129          "status": "CEP",
130          "date": "2025-03-03 23:05:00",
131          "actual": true,
132          "is_date_from_sealine": true,
133          "is_additional_event": false,
134          "type": "land",
135          "transport_type": null,
136          "vessel": null,
137          "voyage": null
138        },
139        {
140          "order_id": 2,
141          "location": 1,
142          "facility": 2,
143          "description": "Gate in",
144          "event_type": "EQUIPMENT",
145          "event_code": "GTIN",
146          "status": "CGI",
147          "date": "2025-03-09 17:58:00",
148          "actual": true,
149          "is_date_from_sealine": true,
150          "is_additional_event": false,
151          "type": "land",
152          "transport_type": null,
153          "vessel": null,
154          "voyage": null
155        },
156        {
157          "order_id": 3,
158          "location": 1,
159          "facility": 2,
160          "description": "Load",
161          "event_type": "EQUIPMENT",
162          "event_code": "LOAD",
163          "status": "CLL",
164          "date": "2025-03-12 14:32:00",
165          "actual": true,
166          "is_date_from_sealine": true,
167          "is_additional_event": false,
168          "type": "sea",
169          "transport_type": "VESSEL",
170          "vessel": 1,
171          "voyage": "510E"
172        },
173        {
174          "order_id": 4,
175          "location": 1,
176          "facility": 2,
177          "description": "Vessel departure",
178          "event_type": "TRANSPORT",
179          "event_code": "DEPA",
180          "status": "VDL",
181          "date": "2025-03-12 21:14:00",
182          "actual": true,
183          "is_date_from_sealine": true,
184          "is_additional_event": false,
185          "type": "sea",
186          "transport_type": "VESSEL",
187          "vessel": 1,
188          "voyage": "510E"
189        },
190        {
191          "order_id": 5,
192          "location": 2,
193          "facility": 3,
194          "description": "Vessel arrival",
195          "event_type": "TRANSPORT",
196          "event_code": "ARRI",
197          "status": "VAD",
198          "date": "2025-04-12 08:00:00",
199          "actual": false,
200          "is_date_from_sealine": true,
201          "is_additional_event": false,
202          "type": "sea",
203          "transport_type": "VESSEL",
204          "vessel": 1,
205          "voyage": "510E"
206        }
207      ]
208    }
209  }
210}

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": "250256386",
8      "sealine": "MAEU",
9      "sealine_name": "Maersk",
10      "status": "IN_TRANSIT",
11      "is_status_from_sealine": true,
12      "from_cache": true,
13      "updated_at": "2025-03-14 07:37:04",
14      "cache_expires": "2025-03-14 19:37:04",
15      "api_calls": {
16        "total": 100,
17        "used": 1,
18        "remaining": 99
19      },
20      "unique_shipments": {
21        "total": 0,
22        "used": 0,
23        "remaining": 0
24      }
25    },
26    "locations": [
27      {
28        "id": 1,
29        "name": "Qingdao",
30        "state": "Shandong Sheng",
31        "country": "China",
32        "country_code": "CN",
33        "locode": "CNQDG",
34        "lat": 36.06488,
35        "lng": 120.38042,
36        "timezone": "Asia/Shanghai"
37      },
38      {
39        "id": 2,
40        "name": "Oakland",
41        "state": "California",
42        "country": "United States",
43        "country_code": "US",
44        "locode": "USOAK",
45        "lat": 37.80437,
46        "lng": -122.2708,
47        "timezone": "America/Los_Angeles"
48      }
49    ],
50    "facilities": [
51      {
52        "id": 1,
53        "name": "OAK INTL CONT TERM BERTH 58 Z985",
54        "country_code": "US",
55        "locode": null,
56        "bic_code": null,
57        "smdg_code": null,
58        "lat": null,
59        "lng": null
60      },
61      {
62        "id": 2,
63        "name": "Smart International Logistics Co",
64        "country_code": "CN",
65        "locode": null,
66        "bic_code": null,
67        "smdg_code": null,
68        "lat": null,
69        "lng": null
70      },
71      {
72        "id": 3,
73        "name": "Qingdao Qianwan Container Co Ltd",
74        "country_code": "CN",
75        "locode": null,
76        "bic_code": null,
77        "smdg_code": null,
78        "lat": null,
79        "lng": null
80      }
81    ],
82    "route": {
83      "prepol": {
84        "location": 1,
85        "date": "2025-03-03 23:05:00",
86        "actual": true
87      },
88      "pol": {
89        "location": 1,
90        "date": "2025-03-12 21:14:00",
91        "actual": true
92      },
93      "pod": {
94        "location": 2,
95        "date": "2025-04-12 08:00:00",
96        "actual": false,
97        "predictive_eta": null
98      },
99      "postpod": {
100        "location": 2,
101        "date": "2025-04-12 08:00:00",
102        "actual": false
103      }
104    },
105    "vessels": [
106      {
107        "id": 1,
108        "name": "MAERSK SHIVLING",
109        "imo": 9728253,
110        "call_sign": "D5JH8",
111        "mmsi": 636017104,
112        "flag": "LR"
113      }
114    ],
115    "containers": [
116      {
117        "number": "MRKU9465770",
118        "iso_code": "22G1",
119        "size_type": "20' Dry Standard",
120        "status": "IN_TRANSIT",
121        "is_status_from_sealine": true,
122        "events": [
123          {
124            "order_id": 1,
125            "location": 1,
126            "facility": 2,
127            "description": "Gate out Empty",
128            "event_type": "EQUIPMENT",
129            "event_code": "GTOT",
130            "status": "CEP",
131            "date": "2025-03-03 23:05:00",
132            "actual": true,
133            "is_date_from_sealine": true,
134            "is_additional_event": false,
135            "type": "land",
136            "transport_type": null,
137            "vessel": null,
138            "voyage": null
139          },
140          {
141            "order_id": 2,
142            "location": 1,
143            "facility": 3,
144            "description": "Gate in",
145            "event_type": "EQUIPMENT",
146            "event_code": "GTIN",
147            "status": "CGI",
148            "date": "2025-03-09 17:58:00",
149            "actual": true,
150            "is_date_from_sealine": true,
151            "is_additional_event": false,
152            "type": "land",
153            "transport_type": null,
154            "vessel": null,
155            "voyage": null
156          },
157          {
158            "order_id": 3,
159            "location": 1,
160            "facility": 3,
161            "description": "Load",
162            "event_type": "EQUIPMENT",
163            "event_code": "LOAD",
164            "status": "CLL",
165            "date": "2025-03-12 14:32:00",
166            "actual": true,
167            "is_date_from_sealine": true,
168            "is_additional_event": false,
169            "type": "sea",
170            "transport_type": "VESSEL",
171            "vessel": 1,
172            "voyage": "510E"
173          },
174          {
175            "order_id": 4,
176            "location": 1,
177            "facility": 3,
178            "description": "Vessel departure",
179            "event_type": "TRANSPORT",
180            "event_code": "DEPA",
181            "status": "VDL",
182            "date": "2025-03-12 21:14:00",
183            "actual": true,
184            "is_date_from_sealine": true,
185            "is_additional_event": false,
186            "type": "sea",
187            "transport_type": "VESSEL",
188            "vessel": 1,
189            "voyage": "510E"
190          },
191          {
192            "order_id": 5,
193            "location": 2,
194            "facility": 1,
195            "description": "Vessel arrival",
196            "event_type": "TRANSPORT",
197            "event_code": "ARRI",
198            "status": "VAD",
199            "date": "2025-04-12 08:00:00",
200            "actual": false,
201            "is_date_from_sealine": true,
202            "is_additional_event": false,
203            "type": "sea",
204            "transport_type": "VESSEL",
205            "vessel": 1,
206            "voyage": "510E"
207          }
208        ]
209      },
210      {
211        "number": "PONU0050964",
212        "iso_code": "22G1",
213        "size_type": "20' Dry Standard",
214        "status": "IN_TRANSIT",
215        "is_status_from_sealine": true,
216        "events": [
217          {
218            "order_id": 1,
219            "location": 1,
220            "facility": 2,
221            "description": "Gate out Empty",
222            "event_type": "EQUIPMENT",
223            "event_code": "GTOT",
224            "status": "CEP",
225            "date": "2025-03-03 23:04:00",
226            "actual": true,
227            "is_date_from_sealine": true,
228            "is_additional_event": false,
229            "type": "land",
230            "transport_type": null,
231            "vessel": null,
232            "voyage": null
233          },
234          {
235            "order_id": 2,
236            "location": 1,
237            "facility": 3,
238            "description": "Gate in",
239            "event_type": "EQUIPMENT",
240            "event_code": "GTIN",
241            "status": "CGI",
242            "date": "2025-03-09 17:58:00",
243            "actual": true,
244            "is_date_from_sealine": true,
245            "is_additional_event": false,
246            "type": "land",
247            "transport_type": null,
248            "vessel": null,
249            "voyage": null
250          },
251          {
252            "order_id": 3,
253            "location": 1,
254            "facility": 3,
255            "description": "Load",
256            "event_type": "EQUIPMENT",
257            "event_code": "LOAD",
258            "status": "CLL",
259            "date": "2025-03-12 14:32:00",
260            "actual": true,
261            "is_date_from_sealine": true,
262            "is_additional_event": false,
263            "type": "sea",
264            "transport_type": "VESSEL",
265            "vessel": 1,
266            "voyage": "510E"
267          },
268          {
269            "order_id": 4,
270            "location": 1,
271            "facility": 3,
272            "description": "Vessel departure",
273            "event_type": "TRANSPORT",
274            "event_code": "DEPA",
275            "status": "VDL",
276            "date": "2025-03-12 21:14:00",
277            "actual": true,
278            "is_date_from_sealine": true,
279            "is_additional_event": false,
280            "type": "sea",
281            "transport_type": "VESSEL",
282            "vessel": 1,
283            "voyage": "510E"
284          },
285          {
286            "order_id": 5,
287            "location": 2,
288            "facility": 1,
289            "description": "Vessel arrival",
290            "event_type": "TRANSPORT",
291            "event_code": "ARRI",
292            "status": "VAD",
293            "date": "2025-04-12 08:00:00",
294            "actual": false,
295            "is_date_from_sealine": true,
296            "is_additional_event": false,
297            "type": "sea",
298            "transport_type": "VESSEL",
299            "vessel": 1,
300            "voyage": "510E"
301          }
302        ]
303      },
304      {
305        "number": "WNGU2504907",
306        "iso_code": "22G1",
307        "size_type": "20' Dry Standard",
308        "status": "IN_TRANSIT",
309        "is_status_from_sealine": true,
310        "events": [
311          {
312            "order_id": 1,
313            "location": 1,
314            "facility": 2,
315            "description": "Gate out Empty",
316            "event_type": "EQUIPMENT",
317            "event_code": "GTOT",
318            "status": "CEP",
319            "date": "2025-03-04 22:04:00",
320            "actual": true,
321            "is_date_from_sealine": true,
322            "is_additional_event": false,
323            "type": "land",
324            "transport_type": null,
325            "vessel": null,
326            "voyage": null
327          },
328          {
329            "order_id": 2,
330            "location": 1,
331            "facility": 3,
332            "description": "Gate in",
333            "event_type": "EQUIPMENT",
334            "event_code": "GTIN",
335            "status": "CGI",
336            "date": "2025-03-09 16:39:00",
337            "actual": true,
338            "is_date_from_sealine": true,
339            "is_additional_event": false,
340            "type": "land",
341            "transport_type": null,
342            "vessel": null,
343            "voyage": null
344          },
345          {
346            "order_id": 3,
347            "location": 1,
348            "facility": 3,
349            "description": "Load",
350            "event_type": "EQUIPMENT",
351            "event_code": "LOAD",
352            "status": "CLL",
353            "date": "2025-03-12 14:51:00",
354            "actual": true,
355            "is_date_from_sealine": true,
356            "is_additional_event": false,
357            "type": "sea",
358            "transport_type": "VESSEL",
359            "vessel": 1,
360            "voyage": "510E"
361          },
362          {
363            "order_id": 4,
364            "location": 1,
365            "facility": 3,
366            "description": "Vessel departure",
367            "event_type": "TRANSPORT",
368            "event_code": "DEPA",
369            "status": "VDL",
370            "date": "2025-03-12 21:14:00",
371            "actual": true,
372            "is_date_from_sealine": true,
373            "is_additional_event": false,
374            "type": "sea",
375            "transport_type": "VESSEL",
376            "vessel": 1,
377            "voyage": "510E"
378          },
379          {
380            "order_id": 5,
381            "location": 2,
382            "facility": 1,
383            "description": "Vessel arrival",
384            "event_type": "TRANSPORT",
385            "event_code": "ARRI",
386            "status": "VAD",
387            "date": "2025-04-12 08:00:00",
388            "actual": false,
389            "is_date_from_sealine": true,
390            "is_additional_event": false,
391            "type": "sea",
392            "transport_type": "VESSEL",
393            "vessel": 1,
394            "voyage": "510E"
395          }
396        ]
397      },
398      {
399        "number": "WNGU2505842",
400        "iso_code": "22G1",
401        "size_type": "20' Dry Standard",
402        "status": "IN_TRANSIT",
403        "is_status_from_sealine": true,
404        "events": [
405          {
406            "order_id": 1,
407            "location": 1,
408            "facility": 2,
409            "description": "Gate out Empty",
410            "event_type": "EQUIPMENT",
411            "event_code": "GTOT",
412            "status": "CEP",
413            "date": "2025-03-05 03:55:00",
414            "actual": true,
415            "is_date_from_sealine": true,
416            "is_additional_event": false,
417            "type": "land",
418            "transport_type": null,
419            "vessel": null,
420            "voyage": null
421          },
422          {
423            "order_id": 2,
424            "location": 1,
425            "facility": 3,
426            "description": "Gate in",
427            "event_type": "EQUIPMENT",
428            "event_code": "GTIN",
429            "status": "CGI",
430            "date": "2025-03-09 20:51:00",
431            "actual": true,
432            "is_date_from_sealine": true,
433            "is_additional_event": false,
434            "type": "land",
435            "transport_type": null,
436            "vessel": null,
437            "voyage": null
438          },
439          {
440            "order_id": 3,
441            "location": 1,
442            "facility": 3,
443            "description": "Load",
444            "event_type": "EQUIPMENT",
445            "event_code": "LOAD",
446            "status": "CLL",
447            "date": "2025-03-12 14:28:00",
448            "actual": true,
449            "is_date_from_sealine": true,
450            "is_additional_event": false,
451            "type": "sea",
452            "transport_type": "VESSEL",
453            "vessel": 1,
454            "voyage": "510E"
455          },
456          {
457            "order_id": 4,
458            "location": 1,
459            "facility": 3,
460            "description": "Vessel departure",
461            "event_type": "TRANSPORT",
462            "event_code": "DEPA",
463            "status": "VDL",
464            "date": "2025-03-12 21:14:00",
465            "actual": true,
466            "is_date_from_sealine": true,
467            "is_additional_event": false,
468            "type": "sea",
469            "transport_type": "VESSEL",
470            "vessel": 1,
471            "voyage": "510E"
472          },
473          {
474            "order_id": 5,
475            "location": 2,
476            "facility": 1,
477            "description": "Vessel arrival",
478            "event_type": "TRANSPORT",
479            "event_code": "ARRI",
480            "status": "VAD",
481            "date": "2025-04-12 08:00:00",
482            "actual": false,
483            "is_date_from_sealine": true,
484            "is_additional_event": false,
485            "type": "sea",
486            "transport_type": "VESSEL",
487            "vessel": 1,
488            "voyage": "510E"
489          }
490        ]
491      },
492      {
493        "number": "WNGU2505884",
494        "iso_code": "22G1",
495        "size_type": "20' Dry Standard",
496        "status": "IN_TRANSIT",
497        "is_status_from_sealine": true,
498        "events": [
499          {
500            "order_id": 1,
501            "location": 1,
502            "facility": 2,
503            "description": "Gate out Empty",
504            "event_type": "EQUIPMENT",
505            "event_code": "GTOT",
506            "status": "CEP",
507            "date": "2025-03-04 22:04:00",
508            "actual": true,
509            "is_date_from_sealine": true,
510            "is_additional_event": false,
511            "type": "land",
512            "transport_type": null,
513            "vessel": null,
514            "voyage": null
515          },
516          {
517            "order_id": 2,
518            "location": 1,
519            "facility": 3,
520            "description": "Gate in",
521            "event_type": "EQUIPMENT",
522            "event_code": "GTIN",
523            "status": "CGI",
524            "date": "2025-03-09 16:39:00",
525            "actual": true,
526            "is_date_from_sealine": true,
527            "is_additional_event": false,
528            "type": "land",
529            "transport_type": null,
530            "vessel": null,
531            "voyage": null
532          },
533          {
534            "order_id": 3,
535            "location": 1,
536            "facility": 3,
537            "description": "Load",
538            "event_type": "EQUIPMENT",
539            "event_code": "LOAD",
540            "status": "CLL",
541            "date": "2025-03-12 14:51:00",
542            "actual": true,
543            "is_date_from_sealine": true,
544            "is_additional_event": false,
545            "type": "sea",
546            "transport_type": "VESSEL",
547            "vessel": 1,
548            "voyage": "510E"
549          },
550          {
551            "order_id": 4,
552            "location": 1,
553            "facility": 3,
554            "description": "Vessel departure",
555            "event_type": "TRANSPORT",
556            "event_code": "DEPA",
557            "status": "VDL",
558            "date": "2025-03-12 21:14:00",
559            "actual": true,
560            "is_date_from_sealine": true,
561            "is_additional_event": false,
562            "type": "sea",
563            "transport_type": "VESSEL",
564            "vessel": 1,
565            "voyage": "510E"
566          },
567          {
568            "order_id": 5,
569            "location": 2,
570            "facility": 1,
571            "description": "Vessel arrival",
572            "event_type": "TRANSPORT",
573            "event_code": "ARRI",
574            "status": "VAD",
575            "date": "2025-04-12 08:00:00",
576            "actual": false,
577            "is_date_from_sealine": true,
578            "is_additional_event": false,
579            "type": "sea",
580            "transport_type": "VESSEL",
581            "vessel": 1,
582            "voyage": "510E"
583          }
584        ]
585      },
586      {
587        "number": "WNGU2506176",
588        "iso_code": "22G1",
589        "size_type": "20' Dry Standard",
590        "status": "IN_TRANSIT",
591        "is_status_from_sealine": true,
592        "events": [
593          {
594            "order_id": 1,
595            "location": 1,
596            "facility": 2,
597            "description": "Gate out Empty",
598            "event_type": "EQUIPMENT",
599            "event_code": "GTOT",
600            "status": "CEP",
601            "date": "2025-03-05 03:35:00",
602            "actual": true,
603            "is_date_from_sealine": true,
604            "is_additional_event": false,
605            "type": "land",
606            "transport_type": null,
607            "vessel": null,
608            "voyage": null
609          },
610          {
611            "order_id": 2,
612            "location": 1,
613            "facility": 3,
614            "description": "Gate in",
615            "event_type": "EQUIPMENT",
616            "event_code": "GTIN",
617            "status": "CGI",
618            "date": "2025-03-09 16:27:00",
619            "actual": true,
620            "is_date_from_sealine": true,
621            "is_additional_event": false,
622            "type": "land",
623            "transport_type": null,
624            "vessel": null,
625            "voyage": null
626          },
627          {
628            "order_id": 3,
629            "location": 1,
630            "facility": 3,
631            "description": "Load",
632            "event_type": "EQUIPMENT",
633            "event_code": "LOAD",
634            "status": "CLL",
635            "date": "2025-03-12 14:54:00",
636            "actual": true,
637            "is_date_from_sealine": true,
638            "is_additional_event": false,
639            "type": "sea",
640            "transport_type": "VESSEL",
641            "vessel": 1,
642            "voyage": "510E"
643          },
644          {
645            "order_id": 4,
646            "location": 1,
647            "facility": 3,
648            "description": "Vessel departure",
649            "event_type": "TRANSPORT",
650            "event_code": "DEPA",
651            "status": "VDL",
652            "date": "2025-03-12 21:14:00",
653            "actual": true,
654            "is_date_from_sealine": true,
655            "is_additional_event": false,
656            "type": "sea",
657            "transport_type": "VESSEL",
658            "vessel": 1,
659            "voyage": "510E"
660          },
661          {
662            "order_id": 5,
663            "location": 2,
664            "facility": 1,
665            "description": "Vessel arrival",
666            "event_type": "TRANSPORT",
667            "event_code": "ARRI",
668            "status": "VAD",
669            "date": "2025-04-12 08:00:00",
670            "actual": false,
671            "is_date_from_sealine": true,
672            "is_additional_event": false,
673            "type": "sea",
674            "transport_type": "VESSEL",
675            "vessel": 1,
676            "voyage": "510E"
677          }
678        ]
679      },
680      {
681        "number": "WNGU2507090",
682        "iso_code": "22G1",
683        "size_type": "20' Dry Standard",
684        "status": "IN_TRANSIT",
685        "is_status_from_sealine": true,
686        "events": [
687          {
688            "order_id": 1,
689            "location": 1,
690            "facility": 2,
691            "description": "Gate out Empty",
692            "event_type": "EQUIPMENT",
693            "event_code": "GTOT",
694            "status": "CEP",
695            "date": "2025-03-05 03:55:00",
696            "actual": true,
697            "is_date_from_sealine": true,
698            "is_additional_event": false,
699            "type": "land",
700            "transport_type": null,
701            "vessel": null,
702            "voyage": null
703          },
704          {
705            "order_id": 2,
706            "location": 1,
707            "facility": 3,
708            "description": "Gate in",
709            "event_type": "EQUIPMENT",
710            "event_code": "GTIN",
711            "status": "CGI",
712            "date": "2025-03-09 20:48:00",
713            "actual": true,
714            "is_date_from_sealine": true,
715            "is_additional_event": false,
716            "type": "land",
717            "transport_type": null,
718            "vessel": null,
719            "voyage": null
720          },
721          {
722            "order_id": 3,
723            "location": 1,
724            "facility": 3,
725            "description": "Load",
726            "event_type": "EQUIPMENT",
727            "event_code": "LOAD",
728            "status": "CLL",
729            "date": "2025-03-12 14:42:00",
730            "actual": true,
731            "is_date_from_sealine": true,
732            "is_additional_event": false,
733            "type": "sea",
734            "transport_type": "VESSEL",
735            "vessel": 1,
736            "voyage": "510E"
737          },
738          {
739            "order_id": 4,
740            "location": 1,
741            "facility": 3,
742            "description": "Vessel departure",
743            "event_type": "TRANSPORT",
744            "event_code": "DEPA",
745            "status": "VDL",
746            "date": "2025-03-12 21:14:00",
747            "actual": true,
748            "is_date_from_sealine": true,
749            "is_additional_event": false,
750            "type": "sea",
751            "transport_type": "VESSEL",
752            "vessel": 1,
753            "voyage": "510E"
754          },
755          {
756            "order_id": 5,
757            "location": 2,
758            "facility": 1,
759            "description": "Vessel arrival",
760            "event_type": "TRANSPORT",
761            "event_code": "ARRI",
762            "status": "VAD",
763            "date": "2025-04-12 08:00:00",
764            "actual": false,
765            "is_date_from_sealine": true,
766            "is_additional_event": false,
767            "type": "sea",
768            "transport_type": "VESSEL",
769            "vessel": 1,
770            "voyage": "510E"
771          }
772        ]
773      },
774      {
775        "number": "WNGU2507233",
776        "iso_code": "22G1",
777        "size_type": "20' Dry Standard",
778        "status": "IN_TRANSIT",
779        "is_status_from_sealine": true,
780        "events": [
781          {
782            "order_id": 1,
783            "location": 1,
784            "facility": 2,
785            "description": "Gate out Empty",
786            "event_type": "EQUIPMENT",
787            "event_code": "GTOT",
788            "status": "CEP",
789            "date": "2025-03-05 03:35:00",
790            "actual": true,
791            "is_date_from_sealine": true,
792            "is_additional_event": false,
793            "type": "land",
794            "transport_type": null,
795            "vessel": null,
796            "voyage": null
797          },
798          {
799            "order_id": 2,
800            "location": 1,
801            "facility": 3,
802            "description": "Gate in",
803            "event_type": "EQUIPMENT",
804            "event_code": "GTIN",
805            "status": "CGI",
806            "date": "2025-03-09 16:29:00",
807            "actual": true,
808            "is_date_from_sealine": true,
809            "is_additional_event": false,
810            "type": "land",
811            "transport_type": null,
812            "vessel": null,
813            "voyage": null
814          },
815          {
816            "order_id": 3,
817            "location": 1,
818            "facility": 3,
819            "description": "Load",
820            "event_type": "EQUIPMENT",
821            "event_code": "LOAD",
822            "status": "CLL",
823            "date": "2025-03-12 14:45:00",
824            "actual": true,
825            "is_date_from_sealine": true,
826            "is_additional_event": false,
827            "type": "sea",
828            "transport_type": "VESSEL",
829            "vessel": 1,
830            "voyage": "510E"
831          },
832          {
833            "order_id": 4,
834            "location": 1,
835            "facility": 3,
836            "description": "Vessel departure",
837            "event_type": "TRANSPORT",
838            "event_code": "DEPA",
839            "status": "VDL",
840            "date": "2025-03-12 21:14:00",
841            "actual": true,
842            "is_date_from_sealine": true,
843            "is_additional_event": false,
844            "type": "sea",
845            "transport_type": "VESSEL",
846            "vessel": 1,
847            "voyage": "510E"
848          },
849          {
850            "order_id": 5,
851            "location": 2,
852            "facility": 1,
853            "description": "Vessel arrival",
854            "event_type": "TRANSPORT",
855            "event_code": "ARRI",
856            "status": "VAD",
857            "date": "2025-04-12 08:00:00",
858            "actual": false,
859            "is_date_from_sealine": true,
860            "is_additional_event": false,
861            "type": "sea",
862            "transport_type": "VESSEL",
863            "vessel": 1,
864            "voyage": "510E"
865          }
866        ]
867      }
868    ],
869    "route_data": {
870      "route": [
871        {
872          "path": [
873            [
874              36.0649,
875              120.3804
876            ],
877            [
878              35.5708,
879              120.8286
880            ],
881            [
882              35.5612,
883              120.8388
884            ],
885            [
886              35.5533,
887              120.8501
888            ],
889            [
890              35.5472,
891              120.8627
892            ],
893            [
894              33.8623,
895              125.0356
896            ],
897            [
898              33.8562,
899              125.0528
900            ],
901            [
902              33.8514,
903              125.0703
904            ],
905            [
906              33.848,
907              125.0882
908            ],
909            [
910              33.7223,
911              125.9125
912            ],
913            [
914              33.7231,
915              125.9275
916            ],
917            [
918              33.7307,
919              125.9376
920            ],
921            [
922              33.745,
923              125.9427
924            ],
925            [
926              33.7717,
927              125.9468
928            ],
929            [
930              33.745,
931              125.9427
932            ],
933            [
934              33.7298,
935              125.9434
936            ],
937            [
938              33.7196,
939              125.9508
940            ],
941            [
942              33.7143,
943              125.9649
944            ],
945            [
946              33.7018,
947              126.0464
948            ],
949            [
950              33.6994,
951              126.053
952            ],
953            [
954              33.6948,
955              126.0561
956            ],
957            [
958              33.6878,
959              126.0556
960            ],
961            [
962              33.6999,
963              126.0591
964            ],
965            [
966              33.6932,
967              126.0585
968            ],
969            [
970              33.6894,
971              126.0615
972            ],
973            [
974              33.6885,
975              126.0681
976            ],
977            [
978              33.7481,
979              126.9036
980            ],
981            [
982              33.7494,
983              126.9217
984            ],
985            [
986              33.7507,
987              126.9398
988            ],
989            [
990              33.752,
991              126.9578
992            ],
993            [
994              33.91265092179989,
995              129.18822808575646
996            ],
997            [
998              34.0022,
999              130.4315
1000            ],
1001            [
1002              34.003,
1003              130.4497
1004            ],
1005            [
1006              34.0028,
1007              130.4679
1008            ],
1009            [
1010              34.0015,
1011              130.486
1012            ],
1013            [
1014              33.9839,
1015              130.6611
1016            ],
1017            [
1018              33.9817,
1019              130.6801
1020            ],
1021            [
1022              33.9786,
1023              130.699
1024            ],
1025            [
1026              33.9749,
1027              130.7177
1028            ],
1029            [
1030              33.9617,
1031              130.7775
1032            ],
1033            [
1034              33.9569,
1035              130.7961
1036            ],
1037            [
1038              33.9507,
1039              130.8142
1040            ],
1041            [
1042              33.9431,
1043              130.8318
1044            ],
1045            [
1046              33.9416,
1047              130.8349
1048            ],
1049            [
1050              33.9341,
1051              130.8506
1052            ],
1053            [
1054              33.9266,
1055              130.8663
1056            ],
1057            [
1058              33.919,
1059              130.882
1060            ],
1061            [
1062              33.9153,
1063              130.8897
1064            ],
1065            [
1066              33.9115,
1067              130.9007
1068            ],
1069            [
1070              33.9105,
1071              130.9119
1072            ],
1073            [
1074              33.9124,
1075              130.9234
1076            ],
1077            [
1078              33.9074,
1079              130.9062
1080            ],
1081            [
1082              33.9117,
1083              130.9172
1084            ],
1085            [
1086              33.9179,
1087              130.9269
1088            ],
1089            [
1090              33.926,
1091              130.9355
1092            ],
1093            [
1094              33.9269,
1095              130.9362
1096            ],
1097            [
1098              33.9367,
1099              130.9454
1100            ],
1101            [
1102              33.9456,
1103              130.9553
1104            ],
1105            [
1106              33.9538,
1107              130.966
1108            ],
1109            [
1110              33.954,
1111              130.9664
1112            ],
1113            [
1114              33.961,
1115              130.9778
1116            ],
1117            [
1118              33.9666,
1119              130.9898
1120            ],
1121            [
1122              33.9708,
1123              131.0025
1124            ],
1125            [
1126              33.9656,
1127              130.9831
1128            ],
1129            [
1130              33.9694,
1131              131.0049
1132            ],
1133            [
1134              33.969,
1135              131.0266
1136            ],
1137            [
1138              33.9645,
1139              131.0483
1140            ],
1141            [
1142              33.94,
1143              131.1264
1144            ],
1145            [
1146              33.934,
1147              131.146
1148            ],
1149            [
1150              33.9283,
1151              131.1657
1152            ],
1153            [
1154              33.9229,
1155              131.1854
1156            ],
1157            [
1158              33.6807,
1159              132.0855
1160            ],
1161            [
1162              33.6766,
1163              132.1054
1164            ],
1165            [
1166              33.6749,
1167              132.1255
1168            ],
1169            [
1170              33.6757,
1171              132.1457
1172            ],
1173            [
1174              33.721,
1175              132.5874
1176            ],
1177            [
1178              33.7235,
1179              132.6081
1180            ],
1181            [
1182              33.7267,
1183              132.6287
1184            ],
1185            [
1186              33.7306,
1187              132.6492
1188            ],
1189            [
1190              34.1492,
1191              134.6545
1192            ],
1193            [
1194              34.1498,
1195              134.6699
1196            ],
1197            [
1198              34.1444,
1199              134.6828
1200            ],
1201            [
1202              34.1332,
1203              134.6933
1204            ],
1205            [
1206              33.4787,
1207              135.1134
1208            ],
1209            [
1210              33.4681,
1211              135.122
1212            ],
1213            [
1214              33.4598,
1215              135.1324
1216            ],
1217            [
1218              33.4538,
1219              135.1447
1220            ],
1221            [
1222              33.2405,
1223              135.7489
1224            ],
1225            [
1226              33.2367,
1227              135.7623
1228            ],
1229            [
1230              33.2347,
1231              135.7759
1232            ],
1233            [
1234              33.2343,
1235              135.7899
1236            ],
1237            [
1238              37.4964,
1239              -123.081
1240            ],
1241            [
1242              37.4979,
1243              -123.0649
1244            ],
1245            [
1246              37.5011,
1247              -123.0491
1248            ],
1249            [
1250              37.506,
1251              -123.0336
1252            ],
1253            [
1254              37.591,
1255              -122.8085
1256            ],
1257            [
1258              37.599,
1259              -122.7875
1260            ],
1261            [
1262              37.6071,
1263              -122.7666
1264            ],
1265            [
1266              37.6154,
1267              -122.7457
1268            ],
1269            [
1270              37.8044,
1271              -122.2708
1272            ]
1273          ],
1274          "type": "SEA",
1275          "transport_type": "VESSEL"
1276        }
1277      ],
1278      "pin": [
1279        33.91265092179989,
1280        129.18822808575646
1281      ],
1282      "ais": {
1283        "status": "OK",
1284        "data": {
1285          "last_event": {
1286            "description": "Vessel departure",
1287            "date": "2025-03-12 21:14:00",
1288            "voyage": "510E"
1289          },
1290          "discharge_port": {
1291            "name": "Oakland",
1292            "country_code": "US",
1293            "code": "OAK",
1294            "date": "2025-04-12 08:00:00",
1295            "date_label": "ETA"
1296          },
1297          "vessel": {
1298            "name": "MAERSK SHIVLING",
1299            "imo": 9728253,
1300            "call_sign": "D5JH8",
1301            "mmsi": 636017104,
1302            "flag": "LR"
1303          },
1304          "last_vessel_position": {
1305            "lat": 35.077282,
1306            "lng": 128.80836,
1307            "updated_at": "2025-03-14 07:47:25"
1308          },
1309          "departure_port": {
1310            "country_code": "CN",
1311            "code": "QDG",
1312            "date": "2025-03-12 13:59:00",
1313            "date_label": "ATD"
1314          },
1315          "arrival_port": {
1316            "country_code": "KR",
1317            "code": "PUS",
1318            "date": "2025-03-14 06:00:00",
1319            "date_label": "ETA"
1320          },
1321          "updated_at": "2025-03-14 07:52:20"
1322        }
1323      }
1324    }
1325  }
1326}

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.

    For certain sealines, tracking is supported using a combined number in the format Bill of Lading Number/Container Number or Booking Number/Container Number (e.g., BL12345678/ABCU1234567 or BK12345678/ABCU1234567).

  • 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        "bl_ct": false,
13        "bk_ct": false
14      },
15      "maintenance": false,
16      "scac_codes": [
17        "MSCU",
18        "MEDU"
19      ],
20      "prefixes": [
21        "MSC",
22        "MSD",
23        "MSM",
24        "MSB",
25        "MSG",
26        "MAD",
27        "MSP",
28        "MSZ",
29        "GTI",
30        "MED",
31        "MSY",
32        "MST",
33        "MSN",
34        "MSV"
35      ]
36    },
37    {
38      "name": "ZIM",
39      "active": true,
40      "active_types": {
41        "ct": true,
42        "bl": true,
43        "bk": true,
44        "bl_ct": false,
45        "bk_ct": false
46      },
47      "maintenance": false,
48      "scac_codes": [
49        "ZIMU"
50      ],
51      "prefixes": [
52        "ZCL",
53        "ZCS",
54        "ZIM",
55        "ZMO",
56        "ZWF"
57      ]
58    }
59  ]
60}

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.

    For certain sealines, tracking is supported using a combined number in the format Bill of Lading Number/Container Number or Booking Number/Container Number (e.g., BL12345678/ABCU1234567 or BK12345678/ABCU1234567).

  • 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.

    For certain sealines, tracking is supported using a combined number in the format Bill of Lading Number/Container Number or Booking Number/Container Number (e.g., BL12345678/ABCU1234567 or BK12345678/ABCU1234567).

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