2012 Chevrolet Tahoe
Chevrolet
USD50760.00
manual · electric · 239818 mi · Gray
Overview
cars / #41
Chevrolet
USD50760.00
manual · electric · 239818 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/41" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/41" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/41"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/41"
)
car = res.json() Response
{
"id": 41,
"make": "Chevrolet",
"model": "Tahoe",
"year": 2012,
"trim": "Platinum",
"vin": "4R2YE9W6141UW7LF1",
"color": "Gray",
"mileage": 239818,
"price": 50760,
"currency": "USD",
"transmission": "manual",
"fuelType": "electric",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Kuvalisstead",
"region": "Florida",
"countryAlpha2": "KR",
"sellerUserId": 64,
"isSold": true,
"createdAt": "2024-06-30T09:48:33.688Z",
"updatedAt": "2025-09-29T15:51:52.783Z"
}