Documentation
Welcome to Vehicle Databases API's Documentation
Vehicle Repair Estimate
GETJSON Response
Overview
This API provides detailed information about the vehicle parts with price and labor cost at particular mileage Interval.
COVERAGE
US region from 1991 to 2025
SUPPORT
Works for 17 characters VINs
HTTP Request
Endpoint
GET https://api.vehicledatabases.com/repair-estimates/{vin}Example — Python / Requests
Target:
Client:
import requests
response = requests.get(
"https://api.vehicledatabases.com/repair-estimates/{vin}",
headers={"x-authkey": "YOUR_API_KEY"}
)
print(response.json())GET Parameters
| Parameter | Required | Description |
|---|---|---|
| vin | ✓ | 17 characters VIN number |
JSON Response
The response is a JSON of all the information associated with a VIN number or YMMT.
Response Fields
| Parameter | Description |
|---|---|
| status | "success" or "error" |
| data | An object containing all data available. |
Example Response
{
"status": "success",
"data": {
"year": 2020,
"make": "Honda",
"model": "Civic",
"trim": "EX 4dr Sedan CVT",
"data": [
{
"mileage": "10000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
}
],
"labor": [
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 27.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 49.4,
"currency": "USD"
}
]
}
]
},
{
"mileage": "20000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"total_cost": 7.3,
"currency": "USD"
}
],
"labor": [
{
"type": "Inspect - Brake lines, hoses & connections",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Brakes",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect boots & seals - Drive shaft",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Inspect - Exhaust system",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fluid levels",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fuel lines, hoses & connections",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect/adjust - Parking brake",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Steering gear rack, linkage & boots",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect - Suspension",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 29.2,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 93.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 122.7,
"currency": "USD"
}
]
}
]
},
{
"mileage": "30000",
"items": [
{
"parts": [
{
"type": "Replace - Air filter",
"total_cost": 19.48,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"total_cost": 19.98,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
}
],
"labor": [
{
"type": "Replace - Air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Drive belt(s)",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 61.36,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 66.0,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 127.36,
"currency": "USD"
}
]
}
]
},
{
"mileage": "40000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"total_cost": 7.3,
"currency": "USD"
}
],
"labor": [
{
"type": "Inspect - Brake lines, hoses & connections",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Brakes",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect boots & seals - Drive shaft",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Inspect - Exhaust system",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fluid levels",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fuel lines, hoses & connections",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect/adjust - Parking brake",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Steering gear rack, linkage & boots",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect - Suspension",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 29.2,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 93.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 122.7,
"currency": "USD"
}
]
}
]
},
{
"mileage": "45000",
"items": [
{
"parts": [
{
"type": "Flush/replace - Brake fluid",
"total_cost": 11.8,
"currency": "USD"
}
],
"labor": [
{
"type": "Flush/replace - Brake fluid",
"time_required_hours": 0.7,
"hourly_rate": 55,
"total_cost": 38.5,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 11.8,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 38.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 50.3,
"currency": "USD"
}
]
}
]
},
{
"mileage": "50000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
}
],
"labor": [
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 27.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 49.4,
"currency": "USD"
}
]
}
]
},
{
"mileage": "60000",
"items": [
{
"parts": [
{
"type": "Replace - Air filter",
"total_cost": 19.48,
"currency": "USD"
},
{
"type": "Change - Automatic transmission fluid",
"total_cost": 45.05,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"total_cost": 19.98,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"total_cost": 7.3,
"currency": "USD"
}
],
"labor": [
{
"type": "Replace - Air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Change - Automatic transmission fluid",
"time_required_hours": 0.5,
"hourly_rate": 55,
"total_cost": 27.5,
"currency": "USD"
},
{
"type": "Inspect - Brake lines, hoses & connections",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Brakes",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Drive belt(s)",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect boots & seals - Drive shaft",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Inspect - Exhaust system",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fluid levels",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fuel lines, hoses & connections",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect/adjust - Parking brake",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Steering gear rack, linkage & boots",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect - Suspension",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 113.71,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 159.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 273.21,
"currency": "USD"
}
]
}
]
},
{
"mileage": "70000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
}
],
"labor": [
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 27.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 49.4,
"currency": "USD"
}
]
}
]
},
{
"mileage": "80000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"total_cost": 7.3,
"currency": "USD"
}
],
"labor": [
{
"type": "Inspect - Brake lines, hoses & connections",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Brakes",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect boots & seals - Drive shaft",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Inspect - Exhaust system",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fluid levels",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fuel lines, hoses & connections",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect/adjust - Parking brake",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Steering gear rack, linkage & boots",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect - Suspension",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 29.2,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 93.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 122.7,
"currency": "USD"
}
]
}
]
},
{
"mileage": "90000",
"items": [
{
"parts": [
{
"type": "Replace - Air filter",
"total_cost": 19.48,
"currency": "USD"
},
{
"type": "Flush/replace - Brake fluid",
"total_cost": 11.8,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"total_cost": 19.98,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Replace - Spark plugs",
"total_cost": 101.48,
"currency": "USD"
}
],
"labor": [
{
"type": "Replace - Air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Flush/replace - Brake fluid",
"time_required_hours": 0.7,
"hourly_rate": 55,
"total_cost": 38.5,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Drive belt(s)",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Replace - Spark plugs",
"time_required_hours": 0.5,
"hourly_rate": 55,
"total_cost": 27.5,
"currency": "USD"
},
{
"type": "Inspect - Valve clearance",
"time_required_hours": 0.2,
"hourly_rate": 55,
"total_cost": 11.0,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 174.64,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 143.0,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 317.64,
"currency": "USD"
}
]
}
]
},
{
"mileage": "100000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"total_cost": 7.3,
"currency": "USD"
}
],
"labor": [
{
"type": "Inspect - Brake lines, hoses & connections",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Brakes",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect boots & seals - Drive shaft",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Inspect - Exhaust system",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fluid levels",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fuel lines, hoses & connections",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect/adjust - Parking brake",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Steering gear rack, linkage & boots",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect - Suspension",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 29.2,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 93.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 122.7,
"currency": "USD"
}
]
}
]
},
{
"mileage": "110000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
}
],
"labor": [
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 27.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 49.4,
"currency": "USD"
}
]
}
]
},
{
"mileage": "120000",
"items": [
{
"parts": [
{
"type": "Replace - Air filter",
"total_cost": 19.48,
"currency": "USD"
},
{
"type": "Change - Automatic transmission fluid",
"total_cost": 45.05,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"total_cost": 19.98,
"currency": "USD"
},
{
"type": "Flush/replace - Coolant",
"total_cost": 24.64,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"total_cost": 7.3,
"currency": "USD"
}
],
"labor": [
{
"type": "Replace - Air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Change - Automatic transmission fluid",
"time_required_hours": 0.5,
"hourly_rate": 55,
"total_cost": 27.5,
"currency": "USD"
},
{
"type": "Inspect - Brake lines, hoses & connections",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Brakes",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Flush/replace - Coolant",
"time_required_hours": 0.7,
"hourly_rate": 55,
"total_cost": 38.5,
"currency": "USD"
},
{
"type": "Inspect - Drive belt(s)",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect boots & seals - Drive shaft",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Inspect - Exhaust system",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fluid levels",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fuel lines, hoses & connections",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect/adjust - Parking brake",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Steering gear rack, linkage & boots",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect - Suspension",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 138.35,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 198.0,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 336.35,
"currency": "USD"
}
]
}
]
},
{
"mileage": "130000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
}
],
"labor": [
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 27.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 49.4,
"currency": "USD"
}
]
}
]
},
{
"mileage": "135000",
"items": [
{
"parts": [
{
"type": "Flush/replace - Brake fluid",
"total_cost": 11.8,
"currency": "USD"
}
],
"labor": [
{
"type": "Flush/replace - Brake fluid",
"time_required_hours": 0.7,
"hourly_rate": 55,
"total_cost": 38.5,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 11.8,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 38.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 50.3,
"currency": "USD"
}
]
}
]
},
{
"mileage": "140000",
"items": [
{
"parts": [
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"total_cost": 7.3,
"currency": "USD"
}
],
"labor": [
{
"type": "Inspect - Brake lines, hoses & connections",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Brakes",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect boots & seals - Drive shaft",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Inspect - Exhaust system",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fluid levels",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Fuel lines, hoses & connections",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Replace - Oil filter",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect/adjust - Parking brake",
"time_required_hours": 0.05,
"hourly_rate": 55,
"total_cost": 2.75,
"currency": "USD"
},
{
"type": "Inspect - Steering gear rack, linkage & boots",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Inspect - Suspension",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 29.2,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 93.5,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 122.7,
"currency": "USD"
}
]
}
]
},
{
"mileage": "150000",
"items": [
{
"parts": [
{
"type": "Replace - Air filter",
"total_cost": 19.48,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"total_cost": 19.98,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"total_cost": 21.9,
"currency": "USD"
}
],
"labor": [
{
"type": "Replace - Air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Replace - Cabin air filter",
"time_required_hours": 0.3,
"hourly_rate": 55,
"total_cost": 16.5,
"currency": "USD"
},
{
"type": "Inspect - Drive belt(s)",
"time_required_hours": 0.1,
"hourly_rate": 55,
"total_cost": 5.5,
"currency": "USD"
},
{
"type": "Change - Engine oil",
"time_required_hours": 0.15,
"hourly_rate": 55,
"total_cost": 8.25,
"currency": "USD"
},
{
"type": "Rotate/adjust air pressure - Wheels & tires",
"time_required_hours": 0.35,
"hourly_rate": 55,
"total_cost": 19.25,
"currency": "USD"
}
],
"total": [
{
"type": "Total Parts Cost",
"total_cost": 61.36,
"currency": "USD"
},
{
"type": "Total Labor Cost",
"total_cost": 66.0,
"currency": "USD"
},
{
"type": "Total Cost",
"total_cost": 127.36,
"currency": "USD"
}
]
}
]
}
]
}
}Error Responses
error
statusWhen an error occurs, the API returns an error status with a code and message.
| Code | Description | Resolution |
|---|---|---|
| 400 | Record(s) were not found for this vehicle. | Verify the VIN or YMMT is correct. |
| 401 | Invalid API Key | Check your API key for correctness and ensure it is properly formatted. |
| 403 | Rate limit exceeded | You have exceeded the number of allowed requests in a given time period. Please wait and try again. |
| 422 | Validation error | One or more parameters are invalid. Check the request parameters for correctness. |
| 500 | Internal server error | An unexpected error occurred on the server. Please try again later or contact support. |