vin-decoder-1
vin-decoder-1 is a Multi-Channel Processing (MCP) server designed to decode Vehicle Identification Numbers (VIN) across North America, Asia, and Europe.
vin-decoder-1 offers a comprehensive toolkit for decoding VINs and retrieving detailed vehicle specifications, including the ability to perform salvage title checks within North America. It supports VIN decoding for vehicles in North America, with additional support for Asian and European vehicles currently in beta. The server is capable of decoding VINs for a variety of vehicle types, extending beyond standard automobiles to include motorcycles, boats, and bikes. It provides access to salvage title information and relevant images, enhancing transparency for North American vehicles. Additionally, vin-decoder-1 offers 100 free API calls per month, making it accessible for low-volume users.
Features
- Universal VIN Decoding
- Motorcycle, Boat, and Bike Support
- Salvage Title Check
- Free Monthly Usage
MCP Tools
- VIN Decoder: Decodes any 17-character VIN to provide detailed vehicle specifications.
- Salvage Check: Retrieves salvage information based on a VIN, useful for checking vehicle history and condition.
- VIN Decoder v1.1: An incremental update to the standard decoder, adding fields for fuel type and drive type.
- USA Plate Number Lookup: Allows users to input a plate number to retrieve the corresponding VIN.
Usage with Different Platforms
python
python
import requests
url = 'https://api.vin-decoder-1.com/decode'
params = {'vin': '1HGCM82633A004352'}
response = requests.get(url, params=params)
print(response.json())
javascript
javascript
fetch('https://api.vin-decoder-1.com/decode?vin=1HGCM82633A004352')
.then(response => response.json())
.then(data => console.log(data));