example-data.com

cars / #41

2012 Chevrolet Tahoe

Chevrolet

USD50760.00

manual · electric · 239818 mi · Gray

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/41" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/41"
);
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/41"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/41"
)
car = res.json()
{
  "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"
}
Draftbit