example-data.com

cars / #100

2017 Chevrolet Suburban

Chevrolet

USD87570.00

manual · diesel · 36802 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/100"
)
car = res.json()
{
  "id": 100,
  "make": "Chevrolet",
  "model": "Suburban",
  "year": 2017,
  "trim": null,
  "vin": "5YLECE5GNG6T3N5YX",
  "color": "Blue",
  "mileage": 36802,
  "price": 87570,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "diesel",
  "bodyType": "convertible",
  "listingType": "sale",
  "city": "Medhurstfurt",
  "region": "Rhode Island",
  "countryAlpha2": "CO",
  "sellerUserId": 176,
  "isSold": false,
  "createdAt": "2025-11-22T03:52:34.614Z",
  "updatedAt": "2025-12-02T22:05:36.487Z"
}
Draftbit