# Get FTL shipment tracking information This endpoint allows you to get FTL shipment tracking information. Max 50 order numbers can be passed. Order numbers should be comma separated. Endpoint: GET /api/v2/ftl/shipments/tracking Version: 1.0.0 Security: bearerAuth ## Query parameters: - `order_numbers` (string, required) A list of order numbers separated by commas. Max 50 order numbers can be passed. Example: "123,456,789" ## Response 200 fields (application/json): - `data` (array) - `data.order_number` (string, required) The order number Example: "FS241205028749" - `data.tracking_events` (array, required) The tracking events - `data.tracking_events.status` (string, required) The tracking status Example: "Shipment booked" - `data.tracking_events.location` (string,null) The location of the event - `data.tracking_events.event_type` (string,null) The type of the event - `data.tracking_events.event_date` (string, required) The date and time of the event Example: "2024-12-05 02:44:32" ## Response 400 fields (application/json): - `message` (string) Example: "INVALID REQUEST." ## Response 401 fields (application/json): - `message` (string) Example: "Unauthenticated." ## Response 500 fields (application/json): - `message` (string) Example: "Internal server error"