example-data.com

cars / #37

2019 Chevrolet Equinox

Chevrolet

USD80.00

automatic · gas · 5623 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/37"
)
car = res.json()
{
  "id": 37,
  "make": "Chevrolet",
  "model": "Equinox",
  "year": 2019,
  "trim": "Sport",
  "vin": "S3F59DTGZZ64BA2C7",
  "color": "Beige",
  "mileage": 5623,
  "price": 80,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "rent",
  "city": "Fort Edmundborough",
  "region": "Arkansas",
  "countryAlpha2": "GR",
  "sellerUserId": 169,
  "isSold": false,
  "createdAt": "2025-02-17T16:02:52.122Z",
  "updatedAt": "2025-11-19T02:07:38.448Z"
}
Draftbit