OEM Build
curl --request GET \
--url https://build.vin/{vin}import requests
url = "https://build.vin/{vin}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://build.vin/{vin}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://build.vin/{vin}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://build.vin/{vin}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://build.vin/{vin}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vin/{vin}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"build": {
"vin": "1C4HJXEN5MW592818",
"year": "2021",
"make": "Jeep",
"model": "Wrangler Unlimited",
"trim": "Unlimited Sahara 4x4",
"series": "Sahara 4x4",
"style": "4D SUV",
"drivetrain": "4x4",
"engine": "2L I-4 gasoline direct injection, DOHC, intercooled turbo, engine with 270HP",
"transmission": "6-Speed M/T",
"confidence": 0.995,
"interiorColor": {
"Black": "#000000"
},
"exteriorColor": {
"Bright White Clearcoat": "#E3E7E4"
},
"options": {
"DFT": "8-Speed Automatic Transmission",
"DRZ": "Dana M200 Rear Axle",
"BNK": "Selec-Speed Control",
"HT1": "Black 3-Piece Hard Top"
},
"optionsMsrp": 4095
}
}
Vehicle
OEM Build
VIN Decode API for OEM vehicle build data.
GET
/
{vin}
OEM Build
curl --request GET \
--url https://build.vin/{vin}import requests
url = "https://build.vin/{vin}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://build.vin/{vin}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://build.vin/{vin}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://build.vin/{vin}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://build.vin/{vin}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vin/{vin}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"build": {
"vin": "1C4HJXEN5MW592818",
"year": "2021",
"make": "Jeep",
"model": "Wrangler Unlimited",
"trim": "Unlimited Sahara 4x4",
"series": "Sahara 4x4",
"style": "4D SUV",
"drivetrain": "4x4",
"engine": "2L I-4 gasoline direct injection, DOHC, intercooled turbo, engine with 270HP",
"transmission": "6-Speed M/T",
"confidence": 0.995,
"interiorColor": {
"Black": "#000000"
},
"exteriorColor": {
"Bright White Clearcoat": "#E3E7E4"
},
"options": {
"DFT": "8-Speed Automatic Transmission",
"DRZ": "Dana M200 Rear Axle",
"BNK": "Selec-Speed Control",
"HT1": "Black 3-Piece Hard Top"
},
"optionsMsrp": 4095
}
}
Original Equipment Manufacturer (OEM) vehicle build data provides detailed information on a vehicle’s make, model, year, and more.
With access to this data, you can be confident that you’re getting the most accurate and up-to-date information available.
string
required
The Vehicle Identification Number (e.g. WP0AF2A99KS165242)
{
"build": {
"vin": "1C4HJXEN5MW592818",
"year": "2021",
"make": "Jeep",
"model": "Wrangler Unlimited",
"trim": "Unlimited Sahara 4x4",
"series": "Sahara 4x4",
"style": "4D SUV",
"drivetrain": "4x4",
"engine": "2L I-4 gasoline direct injection, DOHC, intercooled turbo, engine with 270HP",
"transmission": "6-Speed M/T",
"confidence": 0.995,
"interiorColor": {
"Black": "#000000"
},
"exteriorColor": {
"Bright White Clearcoat": "#E3E7E4"
},
"options": {
"DFT": "8-Speed Automatic Transmission",
"DRZ": "Dana M200 Rear Axle",
"BNK": "Selec-Speed Control",
"HT1": "Black 3-Piece Hard Top"
},
"optionsMsrp": 4095
}
}
⌘I