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

# Transport Data

> Get estimated shipping costs, distances, and ETAs for vehicle transport.

## Overview

The Transport API allows users to retrieve vehicle shipping details using the Vehicle Identification Number (VIN), including cost estimates, distances, and estimated time of arrival (ETA) between zip codes.

| Capabilities         | Description                                                                                               |
| -------------------- | --------------------------------------------------------------------------------------------------------- |
| **Shipping Details** | Get transport cost, ETA, and distance between zip codes.                                                  |
| **Flexible Routing** | Allows querying with origin `fromZip` and destination `toZip` zip codes to calculate specific route data. |
| **Real-Time Data**   | Provides up-to-date shipping estimates and expiration times for transport quotes.                         |

<br />

```json theme={null}
{
  "vehicle": {
    "vin": "JF2GTDEC2PH321888",
    "year": "2023",
    "make": "Subaru",
    "model": "Crosstrek"
  },
  "transport": {
    "id": "a93124d1-3226-4df7-b8fa-e2eb2c7c1d0b",
    "fromZip": "97838",
    "toZip": "98125",
    "price": 722.25,
    "eta": {
      "min": 2,
      "max": 3
    },
    "distance": 258,
    "expiration": "2024-05-09T14:46:08.1201033+00:00"
  }
}
```

***

## Next Steps

Review the API reference for the Transport API

<Card title="Reference – Transport" icon="link" href="/data/reference/finance-&-insurance/get-transport">
  Explore the Transport API endpoint and parameters.
</Card>
