Taxes & Fees
curl --request GET \
--url https://taxes.vin/{vin}import requests
url = "https://taxes.vin/{vin}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://taxes.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://taxes.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://taxes.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://taxes.vin/{vin}")
.asString();require 'uri'
require 'net/http'
url = URI("https://taxes.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_bodyTitle & Registration
Taxes & Fees
GET
/
{vin}
Taxes & Fees
curl --request GET \
--url https://taxes.vin/{vin}import requests
url = "https://taxes.vin/{vin}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://taxes.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://taxes.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://taxes.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://taxes.vin/{vin}")
.asString();require 'uri'
require 'net/http'
url = URI("https://taxes.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_bodystring
required
The Vehicle Identification Number (e.g. WP0AF2A99KS165242)
number
The ZIP code of the location (e.g. 33132). If not provided, we will use the ZIP code of the request origin.
number
The buyer’s credit score (e.g. 720)
string
The vehicle style identifier (e.g., 401752745)
string
The listing identifier (e.g., WP0AF2A99KS165242-db7f459d-1c76)
number
The vehicle price (e.g., 239888)
number
The current mileage of the vehicle (e.g. 10616)