VIN Decoder API Documentation
Base URL:
https://www.vinreveal.com/api/v1/
Overview
The VIN Decoder API provides comprehensive vehicle information from Vehicle Identification Numbers (VINs). Our API validates VINs, extracts manufacturer details, identifies model years, and provides detailed vehicle specifications.
VIN Validation
Check digit verification and format validation following ISO 3779 standards
Comprehensive Decoding
Extract manufacturer, model year, assembly plant, and vehicle specifications
Fast Response
Intelligent caching for previously decoded VINs ensures rapid responses
Secure & Reliable
Multiple authentication methods and comprehensive rate limiting
Core Endpoints
POST
/api/v1/decode
Decode a single VIN and retrieve vehicle information
GET
/api/v1/decode/{vin}
Retrieve cached VIN decode results
GET
/api/v1/user/usage
Get your current API usage statistics
GET
/api/v1/user/history
Retrieve your VIN decode history
Quick Example
curl -X POST https://www.vinreveal.com/api/v1/decode \
-H "X-API-Key: your-api-key-here" \
-H "Content-Type: application/json" \
-d '{"vin": "WAUAFAFL1DN015882"}'
Response
{
"vin": "WAUAFAFL1DN015882",
"valid": true,
"year": 2013,
"make": "Audi",
"model": "A4",
"manufacturer": "Audi AG",
"engine": "2.0L Turbo",
"country": "Germany",
"assembly_plant": "Ingolstadt",
"body_type": "Sedan",
"drive_type": "AWD"
}