> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usedroptrail.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Tracking History

> Retrieve the complete tracking history for a delivery

Get a chronological list of tracking events and status updates for a specific delivery request.

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the delivery request
</ParamField>

## Response

<ResponseField name="delivery_id" type="string">
  The unique identifier of the delivery request
</ResponseField>

<ResponseField name="current_status" type="string">
  Current status of the delivery
</ResponseField>

<ResponseField name="events" type="array">
  List of tracking events in chronological order

  <Expandable title="properties">
    <ResponseField name="timestamp" type="string">
      ISO 8601 timestamp when the event occurred
    </ResponseField>

    <ResponseField name="status" type="string">
      Status at this point (PENDING, ACCEPTED, IN\_TRANSIT, DELIVERED, CANCELLED)
    </ResponseField>

    <ResponseField name="location" type="string">
      Location where the event occurred, if available
    </ResponseField>

    <ResponseField name="description" type="string">
      Detailed description of the event
    </ResponseField>

    <ResponseField name="updated_by" type="string">
      ID of the user or system that created this event
    </ResponseField>
  </Expandable>
</ResponseField>

## Example Response
