Vehicle Title Check API
Authentication
All API requests require an API key to be included in the x-api-key header.
Endpoint
GET /vehicle-title-checkParameters
| Name | Type | Required |
|---|---|---|
| vin | string | Required |
Code Examples
Sample Response
Overview
The Vehicle Title Check API checks title history and risk factors for any vehicle using its VIN.
Instead of reading raw records from different sources manually, TorqueNode structures the results into clean, actionable data points such as salvage flags, primary damage details, and risk scoring.
Endpoint Details
Use the `vin` parameter to check title history for a specific vehicle.
Endpoint: `GET /vehicle-title-check?vin={VIN}`
Credits: 10 credits per successful request.
Data Fields & Severity
The response includes critical boolean flags (`has_salvage_record`, `has_damage_record`, etc.) and a nested `title_check` object containing specific details:
- `title_status`: The resolved general status (e.g., 'clean', 'salvage', 'rebuilt').
- `is_clean_title`: Boolean flag indicating if the vehicle has a clean title.
- `risk_level`: The calculated risk level ('Low', 'Medium', 'High').
- `primary_damage`: The recorded area of primary damage, if any.