Aller au contenu
GET /v1/vin

Decode a VIN

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/nhtsa-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}