The Tire Size API is designed to provide accurate tire size data for various vehicles. With a simple request, you can get detailed information on tire dimensions, specifications, and compatible tire sizes for a given make, model, and year of a vehicle. This API can help developers in automotive industries, e-commerce platforms, or fleet management systems streamline their processes.
$ curl -X 'GET' \ 'https://tire.vdim.app/tiresize/?year=2024
& make=honda & model=civic & trim=ex sedan'
\ -H 'accept: application/json' \
-H 'x-api-key: your_generated_api_key'
{
"data": [
{
"model": "Accord"
},
{
"model": "CR-V"
},
{
"model": "Civic"
},
{
"model": "HR-V"
},
{
"model": "Odyssey"
},
.
.
.
]
}
{
"data": [
{
"aspectratio": "35"
},
{
"aspectratio": "40"
},
{
"aspectratio": "45"
},
{
"aspectratio": "50"
},
{
"aspectratio": "55"
},
{
"aspectratio": "60"
},
.
.
.
]
}
$ curl -X 'GET' \ 'https://tire.vdim.app/api/v1/by_size
/aspectratio/?width=225
\ -H 'accept: application/json' \
-H 'x-api-key: your_generated_api_key'
{
"data": [
{
"speed": "H"
}
]
}
$ curl -X 'GET' \ 'https://tire.vdim.app/api/v1
/by_vehicle/speed/?year=2020&make=honda&model=cr-v&trim=ex'
\ -H 'accept: application/json' \
-H 'x-api-key: your_generated_api_key'
Submit the following information and we'll be in touch with you shortly!