example-data.com

cars / #173

2011 Chevrolet Suburban

Chevrolet

USD350.00

manual · electric · 38765 mi · Silver

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/173"
)
car = res.json()
{
  "id": 173,
  "make": "Chevrolet",
  "model": "Suburban",
  "year": 2011,
  "trim": "Premium",
  "vin": "YN4S2K4A2A86645RC",
  "color": "Silver",
  "mileage": 38765,
  "price": 350,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "electric",
  "bodyType": "suv",
  "listingType": "rent",
  "city": "Kennediland",
  "region": "Kentucky",
  "countryAlpha2": "JP",
  "sellerUserId": 41,
  "isSold": false,
  "createdAt": "2024-06-05T15:10:50.384Z",
  "updatedAt": "2025-07-19T21:08:19.211Z"
}
Draftbit