Smart toolbox for your automotive business
No credit card required. Designed to work within North America
In order to take advantage of the services you need to register and receive a token. The token will be automatically generated after the registration procedure is completed. The next step is to bind the card and select the tariff plan. After that, access to the api will be opened.
We support two data formats: JSON (by default) and XML. To change the format, just add the format
option with the value "json" or "xml" and the data will be returned in the selected format.
https://dealerkit.co/api/get-vin?vin=3VWSA29M8YM087496&token=XXXXXXXXXXXX
{
"success": true,
"query": "3VWSA29M8YM087496",
"specification": [
{
"year": "2000",
"make": "Volkswagen",
"model": "Jetta",
"trim": "GLS 2.0",
"made_in": "MEXICO",
"style": "SEDAN 4-DR",
"engine": "2.0L L4 SOHC 8V",
"transmission": "4-Speed Automatic | 5-Speed Manual",
"drive_type": "FWD",
"tank_size": "14.50",
"city_mileage": "22 - 24",
"highway_mileage": "28 - 31",
"anti_brake_system": "4-Wheel ABS",
"steering_type": "R&P",
"curb_weight_automatic": "2981",
"curb_weight_manual": "2934",
"length": "172.30",
"width": "68.30",
"height": "56.90",
"standard_seating": "5",
"optional_seating": "No data"
}
]
}
https://dealerkit.co/api/get-vin/batch?vin=3VWSA29M8YM087496,WVWFA71F27V003417&delimiter=,&token=XXXXXXXXXXXX
[{
"success": true,
"query": "3VWSA29M8YM087496",
"specification": [
{
"year": "2000",
"make": "Volkswagen",
"model": "Jetta",
"trim": "GLS 2.0",
"made_in": "MEXICO",
"style": "SEDAN 4-DR",
"engine": "2.0L L4 SOHC 8V",
"transmission": "4-Speed Automatic | 5-Speed Manual",
"drive_type": "FWD",
"tank_size": "14.50",
"city_mileage": "22 - 24",
"highway_mileage": "28 - 31",
"anti_brake_system": "4-Wheel ABS",
"steering_type": "R&P",
"curb_weight_automatic": "2981",
"curb_weight_manual": "2934",
"length": "172.30",
"width": "68.30",
"height": "56.90",
"standard_seating": "5",
"optional_seating": "No data"
}
]
},
{
"success": true,
"query": "WVWFA71F27V003417",
"specification": [
{
"year": "2007",
"make": "Volkswagen",
"model": "Eos",
"trim": "2.0T w/ Luxury Pkg.",
"made_in": "GERMANY",
"style": "CONVERTIBLE 2-DR",
"engine": "2.0L L4 DOHC 16V",
"transmission": "6-Speed Automatic",
"drive_type": "FWD",
"tank_size": "14.50",
"city_mileage": "23",
"highway_mileage": "31 - 32",
"anti_brake_system": "4-Wheel ABS",
"steering_type": "R&P",
"curb_weight_automatic": "3686",
"curb_weight_manual": "3503",
"length": "173.60",
"width": "70.50",
"height": "56.80",
"standard_seating": "4",
"optional_seating": "No data"
}
]
}]
https://dealerkit.co/api/random-vin?quantity=5&token=XXXXXXXXXXXX
{
"success": true,
"count": 5,
"result": [
"JTDKN3DUXD5704255",
"19UUA56682A008000",
"19UUA5667YA067533",
"19UUA56681A033283",
"19UUA56681A023613"
]
}
https://dealerkit.co/api/billing?token=XXXXXXXXXXXX
{
"success": true,
"billing_plan": {
"name": "Mega",
"price": 99.99,
"price_req": 0.01,
"price_currency": "USD"
}
}
https://dealerkit.co/api/stat?token=XXXXXXXXXXXX
{
"success": true,
"decoded_total": 2100,
"decoded_today": 224
}
success
property that indicates whether the request was executed correctly. If success is false, you will receive a code and a message describing the error. For example, if you send a request without a token, you will receive an error message:
{
"success": false,
"message": "Your request was made with invalid credentials.",
"code": 401
}