/v1/vin
Decode a VIN
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/nhtsa-api/v1/vin" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nhtsa-api/v1/vin", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nhtsa-api/v1/vin");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/nhtsa-api/v1/vin",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"vin": "1HGCM82633A004352",
"vehicle": {
"gvwr": "Class 1C: 4,001 - 5,000 lb (1,814 - 2,268 kg)",
"make": "HONDA",
"trim": "EX-V6",
"doors": "2",
"model": "Accord",
"fuel_type": "Gasoline",
"body_class": "Coupe",
"model_year": "2003",
"plant_city": "MARYSVILLE",
"manufacturer": "AMERICAN HONDA MOTOR CO., INC.",
"transmission": "Automatic",
"vehicle_type": "PASSENGER CAR",
"plant_country": "UNITED STATES (USA)",
"displacement_l": "2.998832712",
"engine_cylinders": "6"
}
},
"meta": {
"timestamp": "2026-06-08T01:19:45.269Z",
"request_id": "49be6ce7-80c5-4656-bf91-24c2144a21cb"
},
"status": "ok",
"message": "VIN decoded successfully",
"success": true
}