trackedShipments

Returns tracked shipments.

Arguments

NameTypeDescription
limitPositiveInt!The maximal number of records to return.
offsetNonNegativeInt!The number of returned records to skip from the beginning of the record list.
sort[SortInput!]Sets how the returned nodes are sorted.
orderBy[OrderByInput!]Sets the order of the returned track shipment nodes.
filterBy[FilterByInput!]Sets a tracked shipments filter that tests an input field value against a condition or another value.
searchTermStringSpecifies a search term.

Returns

NameDescription
TrackedShipments!The returned tracked shipments' data and metadata.

TrackedShipments Fields

NameTypeDescription
data[TrackedShipment]The shipments' data.
totalNonNegativeIntThe total number of shipments.
totalFilteredNonNegativeIntThe total number of filtered results.

Example Code

Sample Query

query trackedShipments(
  $offset: NonNegativeInt!,
  $limit: PositiveInt!,
  $orderBy: [OrderByInput!],
  $filterBy: [FilterByInput!],
  $searchTerm: String
) {
  trackedShipments(
    offset: $offset,
    limit: $limit,
    orderBy: $orderBy,
    filterBy: $filterBy,
    searchTerm: $searchTerm
  ) {
    total
    totalFiltered
    count
    data {
      id
      metadata {
        jobNumber
        businessData {
          key
          value
        }
      }    
      shipment {
        id
        carrierBookingReference
        containerNumber
        bol
        scac
        carrier {
          code
          shortName
          longName
          codeAliases
        }
        container {
          number
          isoCode
        }
        status {
          id
          events {
            description
            voyage
            utcOffset
            timestamps {
              datetime
              code
            }
            eventType
            equipmentEventTypeCode
            transportEventTypeCode
            port {
              properties {
                name
                locode
                country
              }
            }
          }
          estimatedArrivalAt
          actualArrivalAt
          estimatedDepartureAt
          actualDepartureAt
          currentEvent {
            description
            voyage
            utcOffset
            eventType
            equipmentEventTypeCode
            transportEventTypeCode
            equipmentEventTypeCode
            shipmentLocationTypeCode
            emptyIndicatorCode
          }
          milestones {
            type
            utcOffset
            arrival {
              voyage
            }
            departure {
              voyage
            }
            port {
              properties {
                name
                locode
                country
              }
            }
          }
          predicted {
            datetime
            code
            diffFromCarrierDays
          }
          voyageStatus
          arrivingAt
          pod {
            properties {
              name
              locode
              country
            }
          }
          pol {
            properties {
              name
              locode
              country
            }
          }
          postPod {
            properties {
              name
              locode
              country
            }
          }
          delay {
            reasons {
              createdAt
              delayReasonCode
              vessels {
                compared {
                  id
                }
                updated {
                  id
                }
              }
              departureFromMilestone {
                compared {
                  datetime
                  datetimeLocalized
                  utcOffset
                }
                updated {
                  datetime
                  datetimeLocalized
                  utcOffset
                }
              }
              shipmentPhase
              locode
              delayReasonDescription
              cause
              port {
                properties {
                  name
                  locode
                  country
                }
              }
            }
          }
        }
        initialCarrierETA
      }
      createdAt
      updatedAt
    }
  }
}
query Shipment($limit: PositiveInt!, $sort: [SortInput!], $filterBy: [FilterByInput!]) {
  trackedShipments(limit: $limit, sort: $sort, filterBy: $filterBy) {
    data {
      shipment {
        id
        containerNumber
        bol
        carrierBookingReference
        scac
        status {
          actualArrivalAt
          actualDepartureAt
          arrivingAt
          currentEvent {
            emptyIndicatorCode
            equipmentEventTypeCode
            eventType
            port {
              properties {
                locode
              }
            }
            shipmentEventTypeCode
            shipmentLocationTypeCode
            transportEventTypeCode
            timestamps {
              code
              datetimeLocalized
            }
            vessel {
              imo
            }
          }
          delay {
            podETA {
              compared {
                datetimeLocalized
              }
              updated {
                datetimeLocalized
              }
            }
            reasons {
              delayReasonCode
            }
          }
          estimatedArrivalAt
          estimatedDepartureAt
          events {
            description
            emptyIndicatorCode
            equipmentEventTypeCode
            eventType
            shipmentEventTypeCode
            shipmentLocationTypeCode
            port {
              properties {
                locode
              }
            }
            transportEventTypeCode
            vessel {
              imo
            }
          }
          id
          pod {
            properties {
              locode
            }
          }
          pol {
            properties {
              locode
            }
          }
          predicted {
            code
            datetimeLocalized
          }
        }
        initialCarrierETALocalized
        initialCarrierETDLocalized
        response {
          message
          description
          latestShipmentDataFetch
        }
      }
    }
  }
}

Variables

{
  "offset": 0,
  "limit": 3,
  "orderBy": [
    {
      "field": "shipment_predicted_datetime",
      "order": "desc"
    }
  ],
  "filterBy": [
    {
      "field": "shipment_voyage_status",
      "or": [
        {
          "field": null,
          "ranges": [
            {
              "boost": null,
              "format": null,
              "gt": null,
              "gte": null,
              "lt": null,
              "lte": null,
              "relation": null,
              "time_zone": null
            }
          ],
          "values": null
        }
      ],
      "ranges": [
        {
          "boost": null,
          "format": null,
          "gt": null,
          "gte": null,
          "lt": null,
          "lte": null,
          "relation": null,
          "time_zone": null
        }
      ],
      "values": ""
    }
  ],
  "searchTerm": null
}
{
  "limit": 2,
  "sort": [
    {
      "order": "asc",
      "field": "containerNumber"
    }
  ]
}

Response

{
  "data": {
    "trackedShipments": {
      "total": 648,
      "totalFiltered": 86,
      "count": 3,
      "data": [
        {
          "id": "659eace1aa89d98015010ba9",
          "metadata": {
            "jobNumber": null,
            "businessData": [
              {
                "key": "PO",
                "value": "ETA_INSIGHTS"
              }
            ]
          },
          "shipment": {
            "id": "659eacdeaa89d9801500f467",
            "carrierBookingReference": null,
            "containerNumber": "GATU1309971",
            "bol": null,
            "scac": "HLCU",
            "carrier": {
              "code": "HLCU",
              "shortName": "Hapag Lloyd",
              "longName": "Hapag-Lloyd",
              "codeAliases": [
                "HLCU",
                "HLXU",
                "HPGC",
                "HLUS"
              ]
            },
            "container": {
              "number": "GATU1309971",
              "isoCode": "22G1"
            },
            "status": {
              "id": null,
              "events": [
                {
                  "description": "Empty to shipper",
                  "voyage": null,
                  "utcOffset": "-0500",
                  "timestamps": {
                    "datetime": "2023-01-03T14:46:00.000Z",
                    "code": "ACT"
                  },
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "equipmentEventTypeCode": [
                    "GTOT"
                  ],
                  "transportEventTypeCode": [],
                  "port": {
                    "properties": {
                      "name": "Callao",
                      "locode": "PECLL",
                      "country": "Peru"
                    }
                  }
                },
                {
                  "description": "Departure from first POL",
                  "voyage": "0037W",
                  "utcOffset": "-0500",
                  "timestamps": {
                    "datetime": "2025-01-03T17:00:00.000Z",
                    "code": "PLN"
                  },
                  "eventType": [
                    "TRANSPORT"
                  ],
                  "equipmentEventTypeCode": [],
                  "transportEventTypeCode": [
                    "DEPA"
                  ],
                  "port": {
                    "properties": {
                      "name": "Callao",
                      "locode": "PECLL",
                      "country": "Peru"
                    }
                  }
                },
                {
                  "description": "Arrival at final POD",
                  "voyage": "0037W",
                  "utcOffset": "-0600",
                  "timestamps": {
                    "datetime": "2025-01-20T14:00:00.000Z",
                    "code": "PLN"
                  },
                  "eventType": [
                    "TRANSPORT"
                  ],
                  "equipmentEventTypeCode": [],
                  "transportEventTypeCode": [
                    "ARRI"
                  ],
                  "port": {
                    "properties": {
                      "name": "Lazaro Cardenas",
                      "locode": "MXLZC",
                      "country": "Mexico"
                    }
                  }
                }
              ],
              "estimatedArrivalAt": "2025-01-20T14:00:00.000Z",
              "actualArrivalAt": null,
              "estimatedDepartureAt": "2025-01-03T17:00:00.000Z",
              "actualDepartureAt": null,
              "currentEvent": {
                "description": "Empty to shipper",
                "voyage": null,
                "utcOffset": "-0500",
                "eventType": [
                  "EQUIPMENT"
                ],
                "equipmentEventTypeCode": [
                  "GTOT"
                ],
                "transportEventTypeCode": [],
                "shipmentLocationTypeCode": "POL",
                "emptyIndicatorCode": "EMPTY"
              },
              "milestones": [
                {
                  "type": "POL",
                  "utcOffset": "-0500",
                  "arrival": {
                    "voyage": null
                  },
                  "departure": {
                    "voyage": "0037W"
                  },
                  "port": {
                    "properties": {
                      "name": "Callao",
                      "locode": "PECLL",
                      "country": "Peru"
                    }
                  }
                },
                {
                  "type": "POD",
                  "utcOffset": "-0600",
                  "arrival": {
                    "voyage": "0037W"
                  },
                  "departure": null,
                  "port": {
                    "properties": {
                      "name": "Lazaro Cardenas",
                      "locode": "MXLZC",
                      "country": "Mexico"
                    }
                  }
                }
              ],
              "predicted": {
                "datetime": "2025-01-19T14:00:00.000Z",
                "code": "EST",
                "diffFromCarrierDays": -1
              },
              "voyageStatus": null,
              "arrivingAt": "2025-01-19T14:00:00.000Z",
              "pod": {
                "properties": {
                  "name": "Lazaro Cardenas",
                  "locode": "MXLZC",
                  "country": "Mexico"
                }
              },
              "pol": {
                "properties": {
                  "name": "Callao",
                  "locode": "PECLL",
                  "country": "Peru"
                }
              },
              "postPod": null,
              "delay": {
                "reasons": [
                  {
                    "createdAt": "2024-02-22T14:20:50.000Z",
                    "delayReasonCode": "RLV",
                    "vessels": {
                      "compared": {
                        "id": "59076aae4558b764cc64c07a"
                      },
                      "updated": {
                        "id": "5909cf921585b93cb8ed81a2"
                      }
                    },
                    "departureFromMilestone": {
                      "compared": {
                        "datetime": "2024-01-26T17:00:00.000Z",
                        "datetimeLocalized": "2024-01-26T12:00:00.000Z",
                        "utcOffset": "-05:00"
                      },
                      "updated": {
                        "datetime": "2025-01-03T17:00:00.000Z",
                        "datetimeLocalized": "2025-01-03T12:00:00.000Z",
                        "utcOffset": "-05:00"
                      }
                    },
                    "shipmentPhase": "POL",
                    "locode": "PECLL",
                    "delayReasonDescription": "The container is rolled to a subsequent vessel",
                    "cause": null,
                    "port": {
                      "properties": {
                        "name": "Callao",
                        "locode": "PECLL",
                        "country": "Peru"
                      }
                    }
                  },
                  {
                    "createdAt": "2024-02-22T14:20:50.000Z",
                    "delayReasonCode": "LTD",
                    "vessels": {
                      "compared": null,
                      "updated": {
                        "id": "5909cf921585b93cb8ed81a2"
                      }
                    },
                    "departureFromMilestone": {
                      "compared": {
                        "datetime": "2024-01-26T17:00:00.000Z",
                        "datetimeLocalized": "2024-01-26T12:00:00.000Z",
                        "utcOffset": "-05:00"
                      },
                      "updated": {
                        "datetime": "2025-01-03T17:00:00.000Z",
                        "datetimeLocalized": "2025-01-03T12:00:00.000Z",
                        "utcOffset": "-05:00"
                      }
                    },
                    "shipmentPhase": "POL",
                    "locode": "PECLL",
                    "delayReasonDescription": "Departure from the POL is delayed",
                    "cause": null,
                    "port": {
                      "properties": {
                        "name": "Callao",
                        "locode": "PECLL",
                        "country": "Peru"
                      }
                    }
                  }
                ]
              }
            },
            "initialCarrierETA": "2024-02-10T07:30:00.000Z"
          },
          "createdAt": "2024-01-10T14:42:41.425Z",
          "updatedAt": "2024-01-10T14:42:41.650Z"
        },
        {
          "id": "67163e5de48c9b3e30d170fb",
          "metadata": null,
          "shipment": {
            "id": "67163e5d8de7687b492df9c9",
            "carrierBookingReference": null,
            "containerNumber": "MSNU2246420",
            "bol": "abcd1234",
            "scac": "MSCU",
            "carrier": {
              "code": "MSCU",
              "shortName": "MSC",
              "longName": "Mediterranean Shipping Company (MSC)",
              "codeAliases": [
                "MSCU",
                "MEDU"
              ]
            },
            "container": {
              "number": "MSNU2246420",
              "isoCode": "22G1"
            },
            "status": {
              "id": null,
              "events": [
                {
                  "description": "Empty to shipper",
                  "voyage": null,
                  "utcOffset": "+0900",
                  "timestamps": {
                    "datetime": "2024-10-03T15:00:00.000Z",
                    "code": "ACT"
                  },
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "equipmentEventTypeCode": [
                    "GTOT"
                  ],
                  "transportEventTypeCode": [],
                  "port": {
                    "properties": {
                      "name": "Seoul",
                      "locode": "KRSEL",
                      "country": "SouthKorea"
                    }
                  }
                },
                {
                  "description": "Gate in at first POL",
                  "voyage": null,
                  "utcOffset": "+0900",
                  "timestamps": {
                    "datetime": "2024-10-08T15:00:00.000Z",
                    "code": "ACT"
                  },
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "equipmentEventTypeCode": [
                    "GTIN"
                  ],
                  "transportEventTypeCode": [],
                  "port": {
                    "properties": {
                      "name": "Busan",
                      "locode": "KRPUS",
                      "country": "SouthKorea"
                    }
                  }
                },
                {
                  "description": "Loaded at first POL",
                  "voyage": "441W",
                  "utcOffset": "+0900",
                  "timestamps": {
                    "datetime": "2024-10-12T15:00:00.000Z",
                    "code": "ACT"
                  },
                  "eventType": [
                    "EQUIPMENT",
                    "TRANSPORT"
                  ],
                  "equipmentEventTypeCode": [
                    "LOAD"
                  ],
                  "transportEventTypeCode": [
                    "DEPA"
                  ],
                  "port": {
                    "properties": {
                      "name": "Busan",
                      "locode": "KRPUS",
                      "country": "SouthKorea"
                    }
                  }
                },
                {
                  "description": "Arrival at final POD",
                  "voyage": "441W",
                  "utcOffset": "+0100",
                  "timestamps": {
                    "datetime": "2024-12-01T23:00:00.000Z",
                    "code": "PLN"
                  },
                  "eventType": [
                    "TRANSPORT"
                  ],
                  "equipmentEventTypeCode": [],
                  "transportEventTypeCode": [
                    "ARRI"
                  ],
                  "port": {
                    "properties": {
                      "name": "Koper",
                      "locode": "SIKOP",
                      "country": "Slovenia"
                    }
                  }
                }
              ],
              "estimatedArrivalAt": "2024-12-01T23:00:00.000Z",
              "actualArrivalAt": null,
              "estimatedDepartureAt": null,
              "actualDepartureAt": "2024-10-12T15:00:00.000Z",
              "currentEvent": {
                "description": "Loaded at first POL",
                "voyage": "441W",
                "utcOffset": "+0900",
                "eventType": [
                  "EQUIPMENT",
                  "TRANSPORT"
                ],
                "equipmentEventTypeCode": [
                  "LOAD"
                ],
                "transportEventTypeCode": [
                  "DEPA"
                ],
                "shipmentLocationTypeCode": "POL",
                "emptyIndicatorCode": "LADEN"
              },
              "milestones": [
                {
                  "type": "POL",
                  "utcOffset": "+0900",
                  "arrival": {
                    "voyage": null
                  },
                  "departure": {
                    "voyage": "441W"
                  },
                  "port": {
                    "properties": {
                      "name": "Busan",
                      "locode": "KRPUS",
                      "country": "SouthKorea"
                    }
                  }
                },
                {
                  "type": "POD",
                  "utcOffset": "+0100",
                  "arrival": {
                    "voyage": "441W"
                  },
                  "departure": null,
                  "port": {
                    "properties": {
                      "name": "Koper",
                      "locode": "SIKOP",
                      "country": "Slovenia"
                    }
                  }
                }
              ],
              "predicted": {
                "datetime": "2024-12-02T23:00:00.000Z",
                "code": "EST",
                "diffFromCarrierDays": 1
              },
              "voyageStatus": null,
              "arrivingAt": "2024-12-02T23:00:00.000Z",
              "pod": {
                "properties": {
                  "name": "Koper",
                  "locode": "SIKOP",
                  "country": "Slovenia"
                }
              },
              "pol": {
                "properties": {
                  "name": "Busan",
                  "locode": "KRPUS",
                  "country": "SouthKorea"
                }
              },
              "postPod": null,
              "delay": null
            },
            "initialCarrierETA": "2024-12-01T23:00:00.000Z"
          },
          "createdAt": "2024-10-21T11:43:25.608Z",
          "updatedAt": "2024-10-21T11:43:32.583Z"
        },
        {
          "id": "671637c3e48c9b3e30be8c7d",
          "metadata": null,
          "shipment": {
            "id": "671637c38de7687b492df9c2",
            "carrierBookingReference": null,
            "containerNumber": "MSNU2246420",
            "bol": null,
            "scac": "MSCU",
            "carrier": {
              "code": "MSCU",
              "shortName": "MSC",
              "longName": "Mediterranean Shipping Company (MSC)",
              "codeAliases": [
                "MSCU",
                "MEDU"
              ]
            },
            "container": {
              "number": "MSNU2246420",
              "isoCode": "22G1"
            },
            "status": {
              "id": null,
              "events": [
                {
                  "description": "Empty to shipper",
                  "voyage": null,
                  "utcOffset": "+0900",
                  "timestamps": {
                    "datetime": "2024-10-03T15:00:00.000Z",
                    "code": "ACT"
                  },
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "equipmentEventTypeCode": [
                    "GTOT"
                  ],
                  "transportEventTypeCode": [],
                  "port": {
                    "properties": {
                      "name": "Seoul",
                      "locode": "KRSEL",
                      "country": "SouthKorea"
                    }
                  }
                },
                {
                  "description": "Gate in at first POL",
                  "voyage": null,
                  "utcOffset": "+0900",
                  "timestamps": {
                    "datetime": "2024-10-08T15:00:00.000Z",
                    "code": "ACT"
                  },
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "equipmentEventTypeCode": [
                    "GTIN"
                  ],
                  "transportEventTypeCode": [],
                  "port": {
                    "properties": {
                      "name": "Busan",
                      "locode": "KRPUS",
                      "country": "SouthKorea"
                    }
                  }
                },
                {
                  "description": "Loaded at first POL",
                  "voyage": "441W",
                  "utcOffset": "+0900",
                  "timestamps": {
                    "datetime": "2024-10-12T15:00:00.000Z",
                    "code": "ACT"
                  },
                  "eventType": [
                    "EQUIPMENT",
                    "TRANSPORT"
                  ],
                  "equipmentEventTypeCode": [
                    "LOAD"
                  ],
                  "transportEventTypeCode": [
                    "DEPA"
                  ],
                  "port": {
                    "properties": {
                      "name": "Busan",
                      "locode": "KRPUS",
                      "country": "SouthKorea"
                    }
                  }
                },
                {
                  "description": "Arrival at final POD",
                  "voyage": "441W",
                  "utcOffset": "+0100",
                  "timestamps": {
                    "datetime": "2024-12-01T23:00:00.000Z",
                    "code": "PLN"
                  },
                  "eventType": [
                    "TRANSPORT"
                  ],
                  "equipmentEventTypeCode": [],
                  "transportEventTypeCode": [
                    "ARRI"
                  ],
                  "port": {
                    "properties": {
                      "name": "Koper",
                      "locode": "SIKOP",
                      "country": "Slovenia"
                    }
                  }
                }
              ],
              "estimatedArrivalAt": "2024-12-01T23:00:00.000Z",
              "actualArrivalAt": null,
              "estimatedDepartureAt": null,
              "actualDepartureAt": "2024-10-12T15:00:00.000Z",
              "currentEvent": {
                "description": "Loaded at first POL",
                "voyage": "441W",
                "utcOffset": "+0900",
                "eventType": [
                  "EQUIPMENT",
                  "TRANSPORT"
                ],
                "equipmentEventTypeCode": [
                  "LOAD"
                ],
                "transportEventTypeCode": [
                  "DEPA"
                ],
                "shipmentLocationTypeCode": "POL",
                "emptyIndicatorCode": "LADEN"
              },
              "milestones": [
                {
                  "type": "POL",
                  "utcOffset": "+0900",
                  "arrival": {
                    "voyage": null
                  },
                  "departure": {
                    "voyage": "441W"
                  },
                  "port": {
                    "properties": {
                      "name": "Busan",
                      "locode": "KRPUS",
                      "country": "SouthKorea"
                    }
                  }
                },
                {
                  "type": "POD",
                  "utcOffset": "+0100",
                  "arrival": {
                    "voyage": "441W"
                  },
                  "departure": null,
                  "port": {
                    "properties": {
                      "name": "Koper",
                      "locode": "SIKOP",
                      "country": "Slovenia"
                    }
                  }
                }
              ],
              "predicted": {
                "datetime": "2024-12-02T23:00:00.000Z",
                "code": "EST",
                "diffFromCarrierDays": 1
              },
              "voyageStatus": null,
              "arrivingAt": "2024-12-02T23:00:00.000Z",
              "pod": {
                "properties": {
                  "name": "Koper",
                  "locode": "SIKOP",
                  "country": "Slovenia"
                }
              },
              "pol": {
                "properties": {
                  "name": "Busan",
                  "locode": "KRPUS",
                  "country": "SouthKorea"
                }
              },
              "postPod": null,
              "delay": null
            },
            "initialCarrierETA": "2024-12-01T23:00:00.000Z"
          },
          "createdAt": "2024-10-21T11:15:15.938Z",
          "updatedAt": "2024-10-21T11:29:17.134Z"
        }
      ]
    }
  }
}
{
  "data": {
    "trackedShipments": {
      "data": [
        {
          "shipment": {
            "id": "6582fdc2ee09e2001221c9c1",
            "containerNumber": "CAAU5433450",
            "bol": "233129867",
            "carrierBookingReference": null,
            "scac": "MAEU",
            "status": {
              "actualArrivalAt": null,
              "actualDepartureAt": "2023-12-10T19:49:00.000Z",
              "arrivingAt": "2024-02-16T10:30:00.000Z",
              "currentEvent": {
                "emptyIndicatorCode": null,
                "equipmentEventTypeCode": [],
                "eventType": [
                  "TRANSPORT"
                ],
                "port": {
                  "properties": {
                    "locode": "MAPTM"
                  }
                },
                "shipmentEventTypeCode": null,
                "shipmentLocationTypeCode": "UNK",
                "transportEventTypeCode": [
                  "DEPA"
                ],
                "timestamps": {
                  "code": "ACT",
                  "datetimeLocalized": "2023-12-25T15:08:46.000Z"
                },
                "vessel": {
                  "imo": 9321524
                }
              },
              "delay": {
                "podETA": {
                  "compared": {
                    "datetimeLocalized": "2024-01-17T16:30:00.000Z"
                  },
                  "updated": {
                    "datetimeLocalized": "2024-02-17T04:00:00.000Z"
                  }
                },
                "reasons": [
                  {
                    "delayReasonCode": "RDF"
                  }
                ]
              },
              "estimatedArrivalAt": "2024-02-15T22:30:00.000Z",
              "estimatedDepartureAt": null,
              "events": [
                {
                  "description": "Empty to shipper",
                  "emptyIndicatorCode": "EMPTY",
                  "equipmentEventTypeCode": [
                    "DROP"
                  ],
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "PREPOL",
                  "port": {
                    "properties": {
                      "locode": "DEBRV"
                    }
                  },
                  "transportEventTypeCode": [],
                  "vessel": null
                },
                {
                  "description": "Gate in at first POL",
                  "emptyIndicatorCode": "LADEN",
                  "equipmentEventTypeCode": [
                    "GTIN"
                  ],
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POL",
                  "port": {
                    "properties": {
                      "locode": "DEHAM"
                    }
                  },
                  "transportEventTypeCode": [],
                  "vessel": null
                },
                {
                  "description": "Loaded at first POL",
                  "emptyIndicatorCode": "LADEN",
                  "equipmentEventTypeCode": [
                    "LOAD"
                  ],
                  "eventType": [
                    "EQUIPMENT",
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POL",
                  "port": {
                    "properties": {
                      "locode": "DEHAM"
                    }
                  },
                  "transportEventTypeCode": [
                    "DEPA"
                  ],
                  "vessel": null
                },
                {
                  "description": "Departure from first POL",
                  "emptyIndicatorCode": null,
                  "equipmentEventTypeCode": [],
                  "eventType": [
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POL",
                  "port": {
                    "properties": {
                      "locode": "DEHAM"
                    }
                  },
                  "transportEventTypeCode": [
                    "DEPA"
                  ],
                  "vessel": {
                    "imo": 9321524
                  }
                },
                {
                  "description": "Arrival at T/S port",
                  "emptyIndicatorCode": null,
                  "equipmentEventTypeCode": [],
                  "eventType": [
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "TSP",
                  "port": {
                    "properties": {
                      "locode": "AEJEA"
                    }
                  },
                  "transportEventTypeCode": [
                    "ARRI"
                  ],
                  "vessel": {
                    "imo": 9321524
                  }
                },
                {
                  "description": "Departure from T/S port",
                  "emptyIndicatorCode": null,
                  "equipmentEventTypeCode": [],
                  "eventType": [
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "TSP",
                  "port": {
                    "properties": {
                      "locode": "AEJEA"
                    }
                  },
                  "transportEventTypeCode": [
                    "DEPA"
                  ],
                  "vessel": {
                    "imo": 9303807
                  }
                },
                {
                  "description": "Arrival at final POD",
                  "emptyIndicatorCode": null,
                  "equipmentEventTypeCode": [],
                  "eventType": [
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POD",
                  "port": {
                    "properties": {
                      "locode": "INNSA"
                    }
                  },
                  "transportEventTypeCode": [
                    "ARRI"
                  ],
                  "vessel": {
                    "imo": 9303807
                  }
                }
              ],
              "id": null,
              "pod": {
                "properties": {
                  "locode": "INNSA"
                }
              },
              "pol": {
                "properties": {
                  "locode": "DEHAM"
                }
              },
              "predicted": {
                "code": "EST",
                "datetimeLocalized": "2024-02-16T16:00:00.000Z"
              }
            },
            "initialCarrierETALocalized": "2024-01-17T04:30:00.000Z",
            "initialCarrierETDLocalized": null,
            "response": {
              "message": "DATA_AVAILABLE",
              "description": "Data retrieval is successful, ensuring a seamless experience",
              "latestShipmentDataFetch": "2024-02-01T15:15:46.636Z"
            }
          }
        },
        {
          "shipment": {
            "id": "655d98f47cb133001204997f",
            "containerNumber": "CAAU5590022",
            "bol": null,
            "carrierBookingReference": null,
            "scac": "MSCU",
            "status": {
              "actualArrivalAt": "2024-01-18T23:00:00.000Z",
              "actualDepartureAt": "2023-12-12T06:00:00.000Z",
              "arrivingAt": null,
              "currentEvent": {
                "emptyIndicatorCode": "EMPTY",
                "equipmentEventTypeCode": [
                  "DROP"
                ],
                "eventType": [
                  "EQUIPMENT"
                ],
                "port": {
                  "properties": {
                    "locode": "HUBUD"
                  }
                },
                "shipmentEventTypeCode": null,
                "shipmentLocationTypeCode": "POSTPOD",
                "transportEventTypeCode": [],
                "timestamps": {
                  "code": "ACT",
                  "datetimeLocalized": "2024-01-29T00:00:00.000Z"
                },
                "vessel": null
              },
              "delay": {
                "podETA": {
                  "compared": {
                    "datetimeLocalized": null
                  },
                  "updated": {
                    "datetimeLocalized": "2024-01-19T00:00:00.000Z"
                  }
                },
                "reasons": [
                  {
                    "delayReasonCode": "FVD"
                  }
                ]
              },
              "estimatedArrivalAt": null,
              "estimatedDepartureAt": null,
              "events": [
                {
                  "description": "Empty to shipper",
                  "emptyIndicatorCode": "EMPTY",
                  "equipmentEventTypeCode": [
                    "DROP"
                  ],
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POL",
                  "port": {
                    "properties": {
                      "locode": "MXATM"
                    }
                  },
                  "transportEventTypeCode": [],
                  "vessel": null
                },
                {
                  "description": "Gate in at first POL",
                  "emptyIndicatorCode": "LADEN",
                  "equipmentEventTypeCode": [
                    "GTIN"
                  ],
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POL",
                  "port": {
                    "properties": {
                      "locode": "MXATM"
                    }
                  },
                  "transportEventTypeCode": [],
                  "vessel": null
                },
                {
                  "description": "Loaded at first POL",
                  "emptyIndicatorCode": "LADEN",
                  "equipmentEventTypeCode": [
                    "LOAD"
                  ],
                  "eventType": [
                    "EQUIPMENT",
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POL",
                  "port": {
                    "properties": {
                      "locode": "MXATM"
                    }
                  },
                  "transportEventTypeCode": [
                    "DEPA"
                  ],
                  "vessel": {
                    "imo": 9290543
                  }
                },
                {
                  "description": "Discharge at T/S port",
                  "emptyIndicatorCode": "LADEN",
                  "equipmentEventTypeCode": [
                    "DISC"
                  ],
                  "eventType": [
                    "EQUIPMENT",
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "TSP",
                  "port": {
                    "properties": {
                      "locode": "ITGIT"
                    }
                  },
                  "transportEventTypeCode": [
                    "ARRI"
                  ],
                  "vessel": {
                    "imo": 9290543
                  }
                },
                {
                  "description": "Loaded at T/S port",
                  "emptyIndicatorCode": "LADEN",
                  "equipmentEventTypeCode": [
                    "LOAD"
                  ],
                  "eventType": [
                    "EQUIPMENT",
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "TSP",
                  "port": {
                    "properties": {
                      "locode": "ITGIT"
                    }
                  },
                  "transportEventTypeCode": [
                    "DEPA"
                  ],
                  "vessel": {
                    "imo": 9357810
                  }
                },
                {
                  "description": "Discharge at final POD",
                  "emptyIndicatorCode": "LADEN",
                  "equipmentEventTypeCode": [
                    "DISC"
                  ],
                  "eventType": [
                    "EQUIPMENT",
                    "TRANSPORT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POD",
                  "port": {
                    "properties": {
                      "locode": "SIKOP"
                    }
                  },
                  "transportEventTypeCode": [
                    "ARRI"
                  ],
                  "vessel": {
                    "imo": 9357810
                  }
                },
                {
                  "description": "Gate out from final POD",
                  "emptyIndicatorCode": "LADEN",
                  "equipmentEventTypeCode": [
                    "GTOT"
                  ],
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POD",
                  "port": {
                    "properties": {
                      "locode": "SIKOP"
                    }
                  },
                  "transportEventTypeCode": [],
                  "vessel": null
                },
                {
                  "description": "Empty return to depot",
                  "emptyIndicatorCode": "EMPTY",
                  "equipmentEventTypeCode": [
                    "DROP"
                  ],
                  "eventType": [
                    "EQUIPMENT"
                  ],
                  "shipmentEventTypeCode": null,
                  "shipmentLocationTypeCode": "POSTPOD",
                  "port": {
                    "properties": {
                      "locode": "HUBUD"
                    }
                  },
                  "transportEventTypeCode": [],
                  "vessel": null
                }
              ],
              "id": null,
              "pod": {
                "properties": {
                  "locode": "SIKOP"
                }
              },
              "pol": {
                "properties": {
                  "locode": "MXATM"
                }
              },
              "predicted": {
                "code": "ACT",
                "datetimeLocalized": "2024-01-19T14:32:27.000Z"
              }
            },
            "initialCarrierETALocalized": "2024-01-18T00:00:00.000Z",
            "initialCarrierETDLocalized": null,
            "response": {
              "message": "DATA_AVAILABLE",
              "description": "Data retrieval is successful, ensuring a seamless experience",
              "latestShipmentDataFetch": "2024-02-01T14:39:56.778Z"
            }
          }
        }
      ]
    }
  }
}