# Tracking

This section outlines the necessary data to obtain tracking information for a load and how it works.

To retrieve tracking information for a load, the following path parameter is required:

load_id: Data type string representing the load to track.

# Get tracking

Make a GET request to the following endpoint with the load id:

GET /api/v1/tracking/{load_id}

DEV URL: https://dev.webservices.goglt.com/api/v1/tracking/{load_id}

PROD URL: https://webservices.goglt.com/api/v1/tracking/{load_id}

# Response

The response will be an object with load tracking information.

actual_pickup_date: Data type: string with the date when the freight was picked up.
actual_delivery_date: Data type: string with the date when the freight was delivered.
expected_delivery_date: Data type: string with the expected date to deliver the freight.
expected_ship_date: Data type: string with the expected date to pick up the freight.
load_status: A data type string with the load status in our system, can be "Quoted","Pending", "Assigned", "In Transit" and "Delivered".
pro_number: data type string used by carrier to track the process of the load.
carrier: data type string with the name of the carrier assigned to this load.
updated_price: data type float, This field will show an updated price of your shipment after inspections, added accessorials, or additional services needed or requested. This field will be useful for quote and invoice audits.

{
  "actual_pickup_date": "2023-04-11",
  "actual_delivery_date": "2023-04-11",
  "expected_delivery_date": "2023-04-11",
  "expected_ship_date": "2023-04-11",
  "load_status": "Assigned",
  "pro_number": "I918325791",
  "carrier": "Estes Express (LTL)",
  "updated_price": 230.00
}