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

# Title & Registration Data

> Learn about the Title & Registration APIs and its purpose.

## Overview

The Title & Registration API provides comprehensive access to vehicle title and registration data, including accurate, daily-verified DMV information, tax rates, fee calculations, and required documents across the U.S.

| Capabilities                  | Description                                                                                |
| ----------------------------- | ------------------------------------------------------------------------------------------ |
| [Taxes & Fees](#taxes-&-fees) | Retrieve detailed tax and fee information based on vehicle VIN and ZIP code.               |
| [Documents](#documents)       | Retrieve necessary documents for title and registration based on vehicle VIN and location. |

The API can retrieve detailed tax and fee information based on vehicle VIN and ZIP code, along with providing necessary documents for title and registration.

***

## Taxes & Fees

Retrieves all applicable taxes and fees for a vehicle sale based on its VIN and location.

```json theme={null}
{
  "vehicle": {
    "vin": "WP0AF2A99KS165242",
    "year": "2019",
    "make": "Porsche",
    "model": "911"
  },
  "criteria": {
    "price": 25000,
    "zip": "33132",
    "docFee": 200,
    "tradeIn": "15000"
  },
  "totalTaxesAndFees": 1260.75,
  "taxes": {
    "citySalesTax": 0,
    "combinedSalesTax": 700,
    "countySalesTax": 100,
    "districtSalesTax": 0,
    "stateSalesTax": 600,
    "gasGuzzlerTax": 0
  },
  "fees": {
    "titleFee": 85.25,
    "registrationFee": 247.5,
    "dmvFee": 28,
    "combinedFees": 560.75,
    "docFee": 200,
    "dmvFees": {
      "License Plate Fee": 28
    }
  }
}
```

***

## Documents

Retrieves all necessary documents for title and registration based on vehicle VIN and location.

```json theme={null}
{
  "vehicle": {
    "vin": "WP0AF2A99KS165242",
    "year": "2019",
    "make": "Porsche",
    "model": "911"
  },
  "criteria": {
    "zip": "33132"
  },
  "documentation": {
    "title": {
      "forms": [
        {
          "name": "Title Application",
          "url": "https://www.flhsmv.gov/pdf/forms/82040.pdf"
        },
        {
          "name": "Bill of Sale",
          "url": "https://www.flhsmv.gov/pdf/forms/82050.pdf"
        }
      ]
    },
    "registration": {
      "forms": [
        {
          "name": "Registration Application",
          "url": "https://www.flhsmv.gov/pdf/forms/82040.pdf"
        },
        {
          "name": "Vehicle Inspection Report",
          "url": "https://www.flhsmv.gov/pdf/forms/82050.pdf"
        }
      ]
    }
  }
}
```

### Title & Registration Forms

<Frame>
  <img src="https://mintcdn.com/drivly/26Ex-nQxnySgQw-c/images/data/titleRegFormMN.png?fit=max&auto=format&n=26Ex-nQxnySgQw-c&q=85&s=7758edd0f7ed497e3f9abd0245d9204e" alt="MN Title & Registration Form" width={400} class="py-4" data-path="images/data/titleRegFormMN.png" />
</Frame>

***

## Next Steps

Review the API reference & Guide for the Title & Registration APIs.

<CardGroup cols={2}>
  <Card title="Reference – Title & Registration" icon="link" href="/data/reference/title-&-registration">
    Explore the Title & Registration API endpoints and parameters.
  </Card>

  <Card title="Guide – Taxes & Fees" icon="person-hiking" href="/data/guides/taxes-&-fees">
    Learn how to use the Taxes & Fees API in your application.
  </Card>
</CardGroup>
