example-data.com

cars / #91

2023 Chevrolet Equinox

Chevrolet

USD18510.00

automatic · plugin_hybrid · 37747 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/91"
)
car = res.json()
{
  "id": 91,
  "make": "Chevrolet",
  "model": "Equinox",
  "year": 2023,
  "trim": "Platinum",
  "vin": "MLF0J1D4HPKG0XUVS",
  "color": "Black",
  "mileage": 37747,
  "price": 18510,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "plugin_hybrid",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Londonburgh",
  "region": "New Jersey",
  "countryAlpha2": "SE",
  "sellerUserId": 121,
  "isSold": false,
  "createdAt": "2024-12-22T20:26:05.540Z",
  "updatedAt": "2026-01-13T19:42:26.435Z"
}
Draftbit