example-data.com

cars / #61

2015 Chevrolet Tahoe

Chevrolet

USD170.00

automatic · gas · 34194 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/61"
)
car = res.json()
{
  "id": 61,
  "make": "Chevrolet",
  "model": "Tahoe",
  "year": 2015,
  "trim": "Premium",
  "vin": "BVGNCKTZH4CYB6VYA",
  "color": "White",
  "mileage": 34194,
  "price": 170,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "rent",
  "city": "Scottyhaven",
  "region": "Washington",
  "countryAlpha2": "PK",
  "sellerUserId": 232,
  "isSold": false,
  "createdAt": "2026-02-07T11:08:08.109Z",
  "updatedAt": "2026-02-27T16:17:09.874Z"
}
Draftbit