2016 Chevrolet Tahoe
Chevrolet
USD113350.00
automatic · plugin_hybrid · 51513 mi · Gray
cars / #176
Chevrolet
USD113350.00
automatic · plugin_hybrid · 51513 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/176" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/176"
);
const car = await res.json();import type { Car } from "https://example-data.com/types/cars.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/cars/176"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/176"
)
car = res.json() {
"id": 176,
"make": "Chevrolet",
"model": "Tahoe",
"year": 2016,
"trim": "Sport",
"vin": "UAP9CTBZ7GDWBC57N",
"color": "Gray",
"mileage": 51513,
"price": 113350,
"currency": "USD",
"transmission": "automatic",
"fuelType": "plugin_hybrid",
"bodyType": "coupe",
"listingType": "sale",
"city": "North Javontown",
"region": "Illinois",
"countryAlpha2": "KE",
"sellerUserId": 120,
"isSold": false,
"createdAt": "2025-09-04T12:38:39.092Z",
"updatedAt": "2026-03-31T16:51:22.925Z"
}