> ## 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.

# Total Cost of Ownership Data

> Get the total cost of ownership for a vehicle.

## Overview

The Total Cost of Ownership (TCO) API provides detailed information on the estimated costs of owning a vehicle, including taxes, fees, and other expenses, based on a given VIN.

| Capabilities            | Description                                                                        |
| ----------------------- | ---------------------------------------------------------------------------------- |
| **Estimate Total Cost** | Retrieve the total cost of ownership for a vehicle based on the VIN.               |
| **View Costs by Year**  | Get the costs associated with owning the vehicle for each year of ownership.       |
| **Detailed Breakdown**  | View a detailed breakdown of the costs, including taxes, fees, and other expenses. |

<br />

```json theme={null}
{
  "vehicle": {
    "vin": "3TYSZ5AN8PT104981",
    "year": "2023",
    "make": "Toyota",
    "model": "Tacoma"
  },
  "zip": "55414",
  "tco": {
    "total": {
      "taxesAndFees": 4435
      ...
    },
    "years": {
      "1": {
        "taxesAndFees": 3479
        ...
      }
      ...
    }
  }
}
```

***

## Next Steps

Review the API reference & Guide for the Total Cost of Ownership API.

<CardGroup cols={2}>
  <Card title="Reference – Total Cost of Ownership" icon="link" href="/data/reference/vehicle/total-cost-ownership">
    Explore the Total Cost of Ownership API endpoint and parameters.
  </Card>

  <Card title="Guide – Total Cost of Ownership" icon="person-hiking" href="/data/guides/total-cost-of-ownership">
    Learn how to use the Total Cost of Ownership API in your application.
  </Card>
</CardGroup>
