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.
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 Retrieve detailed tax and fee information based on vehicle VIN and ZIP code. 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.
{
"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.
{
"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"
}
]
}
}
}
Next Steps
Review the API reference & Guide for the Title & Registration APIs.
Reference – Title & Registration Explore the Title & Registration API endpoints and parameters.
Guide – Taxes & Fees Learn how to use the Taxes & Fees API in your application.