example-data.com

cars / #165

2020 Chevrolet Suburban

Chevrolet

USD72910.00

automatic · hybrid · 3342 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/165"
)
car = res.json()
{
  "id": 165,
  "make": "Chevrolet",
  "model": "Suburban",
  "year": 2020,
  "trim": "Sport",
  "vin": "A06F2CRJP274HPDZK",
  "color": "Beige",
  "mileage": 3342,
  "price": 72910,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Rahulfield",
  "region": "Georgia",
  "countryAlpha2": "CN",
  "sellerUserId": 10,
  "isSold": false,
  "createdAt": "2024-07-26T02:19:26.433Z",
  "updatedAt": "2025-04-15T08:39:18.122Z"
}
Draftbit