/v1/vin
Decode a VIN
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}