example-data.com

cars / #150

2011 Chevrolet Suburban

Chevrolet

USD14900.00

automatic · electric · 19295 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/150"
)
car = res.json()
{
  "id": 150,
  "make": "Chevrolet",
  "model": "Suburban",
  "year": 2011,
  "trim": null,
  "vin": "2KW2VSA8JXEWW5GVW",
  "color": "Yellow",
  "mileage": 19295,
  "price": 14900,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "West Christina",
  "region": "Michigan",
  "countryAlpha2": "PL",
  "sellerUserId": 57,
  "isSold": false,
  "createdAt": "2026-03-08T08:41:25.462Z",
  "updatedAt": "2026-04-30T11:30:11.000Z"
}
Draftbit