example-data.com

cars / #57

2020 Chevrolet Suburban

Chevrolet

USD74670.00

automatic · gas · 55965 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/57"
)
car = res.json()
{
  "id": 57,
  "make": "Chevrolet",
  "model": "Suburban",
  "year": 2020,
  "trim": "Sport",
  "vin": "9DKXE9F7BJYU3858B",
  "color": "White",
  "mileage": 55965,
  "price": 74670,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Dewittshire",
  "region": "Kansas",
  "countryAlpha2": "AE",
  "sellerUserId": 84,
  "isSold": false,
  "createdAt": "2025-01-12T17:33:27.998Z",
  "updatedAt": "2025-11-16T00:15:05.832Z"
}
Draftbit